﻿.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: white;
    border: none !important; 
    border-radius: 12px !important; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important; 
    width: calc(50% - 10px);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.card-favorite {
    cursor: pointer;
}

.card-content {
    font-size: 14px;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.card-actions button {
        margin: 0 8px;
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        flex: 1;
        max-width: 120px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 !important;
    margin-bottom: 0.5em !important;
}

.card-header-left {
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.infoCodigoData {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

.divider-line {
    border-top: 1px solid #ddd;
    margin: 16px 0 8px 0;
}

.data-publicacao {
    font-size: 13px;
    color: #555;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button.reject {
        background-color: #001D41;
        color: white;
}

button.apply {
        background-color: #4caf50;
        color: white;
}

.info {
    display: flex;
    align-items: center;
    margin-top: 8px;
    gap: 6px;
    flex-wrap: wrap;
}

.info span {
        position: static !important;
        padding: 0 !important;
}

.icon-curtida-container {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.icon-curtida-container .material-icons {
        font-size: 24px;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 24px;
    }

.icon-curtida-container .qtde-curtida {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 9px;
        font-weight: bold;
        color: white;
        text-align: center;
        line-height: 24px;
        pointer-events: none;
    }

.curtida-ativa {
    color: red;
}

.curtida-inativa {
    color: #999;
}

.linha-inferior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.data-publicacao {
}

.qtde-compartilhado {
    text-align: right;
}

@-moz-document url-prefix() {
    .card {
        flex: 1 1 calc(50% - 20px); 
        min-width: 350px;
        max-width: 100%;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .card {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 991px) {
        .card {
            flex: 1 1 100% !important;
        }
    }
}