/**
 * Estilos Centralizados para Sistema de Compra Minecraft
 * Baseado no sistema da Steam, removendo SDA e Get Temp Email
 */

/* ===== MODAL DE TERMOS (IGUAL AO STEAM) ===== */
.btn-primary {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: #000;
}
.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgb(109 119 121 / 40%) !important;
}
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* ===== OVERLAY E CONTENT - APENAS PARA TERMOS ===== */
.purchase-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.purchase-modal .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

@keyframes statusSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== HEADER DO MODAL - APENAS PARA TERMOS ===== */
.purchase-modal .modal-header {
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purchase-modal .modal-header h3 {
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== BOTÕES DE FECHAR - APENAS PARA TERMOS ===== */
.purchase-modal .close-modal {
    position: absolute;
    right: -15px;
    top: -10px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.purchase-modal .close-modal:hover {
    color: #fff;
}

/* ===== BODY DO MODAL - APENAS PARA TERMOS ===== */
.purchase-modal .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: -50px 0px -50px 0px;
    white-space: pre-line;
    padding: 25px 0px 25px 10px !important;
}

/* ===== SEÇÃO DE TERMOS - APENAS PARA TERMOS ===== */
.purchase-modal .terms-section {
    margin: 0px;
}

.purchase-modal .terms-info {
    margin: -40px 0px 0px 0px;
}

.purchase-modal .terms-info p {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-weight: bold;
}

.purchase-modal .terms-info ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
    color: #ffffff;
}

.purchase-modal .terms-info li {
    margin: 5px 0;
}

.purchase-modal .terms-link {
    color: #22e5fa;
    text-decoration: none;
    font-weight: bold;
}

.purchase-modal .terms-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER DO MODAL - APENAS PARA TERMOS ===== */
.purchase-modal .modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 0px 10px 0px;
}

/* ===== BOTÕES - APENAS PARA TERMOS ===== */
.purchase-modal .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.purchase-modal .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.purchase-modal .btn-secondary {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.purchase-modal .btn-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.purchase-modal .btn-success {
    background: linear-gradient(135deg, #00ff88 0%, #00d4aa 100%);
    color: #000;
}

.purchase-modal .btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* ===== LOADING ===== */
.purchase-modal .loading {
    display: none;
    text-align: center;
    color: #ccc;
    padding: 20px;
}

.purchase-modal .loading.show {
    display: block;
}

.purchase-modal .spinner {
    border: 3px solid #333;
    border-top: 3px solid #22e5fa;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MODAL DE SUCESSO ===== */
.purchase-modal .success-content {
    display: none;
}

.purchase-modal .success-content.show {
    display: block;
}

.purchase-modal .success-info {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.purchase-modal .success-info h4 {
    color: #22e5fa;
    margin: 0 0 15px 0;
}

.purchase-modal .success-info p {
    margin: 5px 0;
    color: #fff;
}

.purchase-modal .account-credentials {
    background: #1a2a1a;
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.purchase-modal .account-credentials h5 {
    color: #00ff88;
    margin: 0 0 10px 0;
}

.purchase-modal .credential-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #fff;
}

.purchase-modal .credential-item strong {
    color: #22e5fa;
}

/* ===== MODAL DE ERRO ===== */
.purchase-modal .error-content {
    display: none;
}

.purchase-modal .error-content.show {
    display: block;
}

.purchase-modal .error-message {
    background: #2a1a1a;
    border: 1px solid #ff4757;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.purchase-modal .error-message h4 {
    color: #ff4757;
    margin: 0 0 15px 0;
}

.purchase-modal .error-message p {
    color: #fff;
    margin: 5px 0;
}


/* ===== MODAL DE MUDANÇA DE PREÇO ===== */
.modal-mudancapreco {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-mudancapreco .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

.modal-mudancapreco .modal-header {
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-mudancapreco .modal-header h3 {
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-mudancapreco .close-price-header {
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.modal-mudancapreco .close-price-header:hover {
    color: #ccc;
}

.modal-mudancapreco .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: -50px 0px -50px 0px;
    padding: 25px 0px 25px 10px !important;
}

.modal-mudancapreco .price-change-info {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0px 0px 0px;
    margin-bottom: 20px;
}

.modal-mudancapreco .countdown-info {
    background: #1a2a1a;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.modal-mudancapreco .countdown-info p {
    color: #ffc107;
    font-weight: bold;
    margin: 0;
}

.modal-mudancapreco .modal-footer {
    display: flex;
    margin: 30px 0px 0px 0px;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== LOADING DE COMPRA ===== */
.purchase-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.purchase-loading .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.purchase-loading .loading-content {
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
}

.purchase-loading .spinner {
    border: 4px solid #333;
    border-top: 4px solid #22e5fa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.purchase-loading h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.purchase-loading p {
    color: #ccc;
    margin: 5px 0;
    line-height: 1.5;
}

/* ===== MODAL DE COMPRA REALIZADA COM SUCESSO ===== */
.modal-comprasucesso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-comprasucesso .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-comprasucesso .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

.modal-comprasucesso .modal-header {
    color: #ffffff;
    border-radius: 15px 15px 0 0;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.modal-comprasucesso .modal-header h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

.modal-comprasucesso .success-icon {
    text-align: center;
    margin-bottom: 10px;
}

.modal-comprasucesso .success-icon img {
    display: block;
    margin: 0 auto;
}

.modal-comprasucesso .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0;
}

.modal-comprasucesso .close-success-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    z-index: 1001;
    background: transparent;
    border: transparent;
    border-radius: 50%;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.modal-comprasucesso .close-success-modal:hover {
    transform: scale(1.1);
}

.success-info {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.success-info p {
    margin: 3px 0;
    color: #fff;
    font-size: 14px;
}

/* ===== ELEMENTOS ESPECÍFICOS DO MODAL DE SUCESSO ===== */
.modal-comprasucesso .account-details,
.modal-comprasucesso .account-credentials {
    background: #2a2a2a;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-comprasucesso .account-details h4,
.modal-comprasucesso .account-credentials h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 16px;
}

.modal-comprasucesso .account-data,
.modal-comprasucesso .credentials-box {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #333;
}

.modal-comprasucesso .account-data p,
.modal-comprasucesso .credentials-box p {
    margin: 4px 0;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 13px;
}

.modal-comprasucesso .success-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-comprasucesso .success-links .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
    text-transform: none;
    letter-spacing: 0.3px;
}

.modal-comprasucesso .success-links .btn:hover {
    transform: translateY(-2px);
}

.modal-comprasucesso .success-links .btn-primary {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
}

.modal-comprasucesso .success-links .btn-primary:hover {
    background: #3a3a3a;
    color: #ffffff;
}

.modal-comprasucesso .success-links .btn-primary i {
    font-size: 16px;
}

/* ===== MODAL DE CONTA VENDIDA ===== */
.modal-contavendida {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-contavendida .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-contavendida .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

.modal-contavendida .modal-header {
    color: #fff;
    border-radius: 15px 15px 0 0;
    margin: -20px -20px 15px -20px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.modal-contavendida .modal-header h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.modal-contavendida .sold-icon {
    text-align: center;
    margin-bottom: 10px;
}

.modal-contavendida .sold-icon img {
    display: block;
    margin: 0 auto;
}

.modal-contavendida .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 0;
}

.modal-contavendida .error-message {
    padding: 15px;
    border-radius: 8px;
}

.modal-contavendida .error-message p {
    margin: 5px 0;
    color: #fff;
    font-size: 14px;
}

.modal-contavendida .error-message p strong {
    color: #ff6b6b;
    font-weight: bold;
}

.modal-contavendida .redirect-countdown {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
}

.modal-contavendida .redirect-countdown #countdown {
    color: #dc3545;
    font-size: 1.2em;
    font-weight: bold;
}

.modal-contavendida .close-modal {
    position: absolute;
    right: -22px;
    top: -22px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.modal-contavendida .close-modal:hover {
    color: #ccc;
}

/* ===== MODAL DE ERRO ===== */
.modal-erro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-erro .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 520px;
    height: 310px;
    max-height: 100%;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

.modal-erro .modal-header {
    margin: 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-erro .modal-header h3 {
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-erro .close-modal {
    position: absolute;
    right: -22px;
    top: -22px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.modal-erro .close-modal:hover {
    color: #ccc;
}

.modal-erro .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: -50px 0px -50px 0px;
    padding: 25px 0px 25px 10px !important;
}

.modal-erro .error-info {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.modal-erro .error-info p {
    margin: 5px 0;
    color: #fff;
}

.modal-erro .modal-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px 0px 10px 0px;
}

/* ===== MODAL DE CONTA VENDIDA ===== */
.modal-contavendida {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-contavendida .modal-content {
    background: rgb(31 31 31);
    border: 1px solid rgb(54 54 54);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    max-height: 360px;
    width: 90%;
    height: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: statusSlideIn 0.3s ease-out;
    position: relative;
}

.modal-contavendida .modal-header {
    margin: 10px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-contavendida .modal-header h2 {
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-contavendida .modal-body {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: -50px 0px -50px 0px;
    padding: 25px 0px 25px 10px !important;
}

.modal-contavendida .error-message {
    border-radius: 10px;
    padding: 20px;
}

.modal-contavendida .error-message p {
    margin: 5px 0;
    color: #fff;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .purchase-modal .modal-content,
    .modal-mudancapreco .modal-content,
    .modal-comprasucesso .modal-content,
    .modal-erro .modal-content,
    .modal-contavendida .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .purchase-modal .modal-header,
    .purchase-modal .modal-body,
    .purchase-modal .modal-footer,
    .modal-mudancapreco .modal-header,
    .modal-mudancapreco .modal-body,
    .modal-mudancapreco .modal-footer,
    .modal-comprasucesso .modal-header,
    .modal-comprasucesso .modal-body,
    .modal-comprasucesso .modal-footer,
    .modal-erro .modal-header,
    .modal-erro .modal-body,
    .modal-erro .modal-footer,
    .modal-contavendida .modal-header,
    .modal-contavendida .modal-body,
    .modal-contavendida .modal-footer {
        padding: 25px 0px 25px 10px;
    }
    
    .purchase-modal .modal-footer,
    .minecraft-warning-modal .modal-footer,
    .modal-mudancapreco .modal-footer,
    .purchase-success-modal .modal-footer,
    .modal-erro .modal-footer,
    .modal-contavendida .modal-footer {
        flex-direction: column;
    }
    
    .purchase-modal .btn,
    .modal-mudancapreco .btn,
    .modal-comprasucesso .btn,
    .modal-erro .btn,
    .modal-contavendida .btn {
        min-width: 120px;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .purchase-modal .modal-content,
    .modal-mudancapreco .modal-content,
    .modal-comprasucesso .modal-content,
    .modal-erro .modal-content,
    .modal-contavendida .modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .purchase-modal .modal-header,
    .purchase-modal .modal-body,
    .purchase-modal .modal-footer,
    .modal-mudancapreco .modal-header,
    .modal-mudancapreco .modal-body,
    .modal-mudancapreco .modal-footer,
    .modal-comprasucesso .modal-header,
    .modal-comprasucesso .modal-body,
    .modal-comprasucesso .modal-footer,
    .modal-erro .modal-header,
    .modal-erro .modal-body,
    .modal-erro .modal-footer,
    .modal-contavendida .modal-header,
    .modal-contavendida .modal-body,
    .modal-contavendida .modal-footer {
        padding: 20px 0px 20px 5px;
    }
    
    .purchase-modal .btn,
    .modal-mudancapreco .btn,
    .modal-comprasucesso .btn,
    .modal-erro .btn,
    .modal-contavendida .btn {
        width: 100%;
        margin: 5px 0;
    }
}