body {
    background-color: rgb(36, 36, 36);
    padding: 20px 0;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f7aa45;
    color: #000000;
    border-radius: 15px 15px 0 0 !important;
    font-weight: bold;
}

.status-badge {
    font-size: 1.2rem;
    padding: 8px 16px;
}

.info-label {
    font-weight: bold;
    color: #495057;
}

.info-value {
    font-size: 1.2rem;
    color: #212529;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-urgent {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.8);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-1px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(1px);
    }
}

.modal-header {
    display: inline !important;
}

.modal-content-pronto {
    animation: pulse 1.5s infinite;
}

.modal-content-urgent {
    animation: pulse-urgent 0.8s infinite, shake 0.5s infinite;
}

.blink-text {
    animation: blink 1s infinite;
    font-weight: bold;
}

.btn-notification {
    transition: all 0.3s ease;
}

.btn-notification:hover {
    transform: scale(1.05);
}

.btn-notification.active {
    background-color: #28a745;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

.alert-urgent {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #ff0000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.permission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    backdrop-filter: blur(5px);
}

.permission-dialog {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.permission-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.permission-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.permission-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.permission-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.permission-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-allow {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
}

.btn-allow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-deny {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: white;
}

.btn-deny:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
}

.hidden {
    display: none;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100px;
    overflow: hidden;
	border-top: 3px solid rgb(36, 36, 36);
	border-bottom: 3px solid rgb(36, 36, 36);
}

.banner-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    animation: scroll 120s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}

.banner-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f7aa45;
    padding: 0 20px;
}

.separator {
    display: inline-block;
    color: rgb(36, 36, 36);
    font-size: 2rem;
    padding: 0 30px;
}

@media (max-width: 600px) {
    .banner-text {
        font-size: 1.25rem;
    }

    .separator {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .banner-container {
        height: 100px;
    }
}