
body {
    background-color: #000;
    color: #fff;
    font-family: "Nunito", sans-serif;
}

p shape-margin: {
    color: #fff;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35 !important;
}

.main-back{

}

.card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    color: #fff;
}

.card-body {
    padding: 2rem;
}

.btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 10px;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.btn-outline-primary {
    color: #ff6b35;
    border-color: #ff6b35;
}

.btn-outline-primary:hover {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.form-control {
    background-color: #2a2a2a;
    border-color: #444;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px;
    border-radius: 10px;
}

.form-control:focus {
    background-color: #2a2a2a;
    border-color: #ff6b35;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.alert {
    border-radius: 10px;
}

.duration-card {
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.duration-card.selected {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
}

.recording-interface {
    text-align: center;
    padding: 2rem;
}

.countdown {
    font-size: 4rem;
    font-weight: bold;
    color: #ff6b35;
    margin: 2rem 0;
}

.recording-status {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.logo {
    max-height: 80px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
    
    .btn-primary {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    .countdown {
        font-size: 3rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

.bg-image-container {
    position: relative;
    background-image: url('/assets/img/group_pic.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates parallax effect */
}

.bg-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay - adjust opacity as needed */
    z-index: 1;
}

.bg-image-container > * {
    position: relative;
    z-index: 2; /* Ensures content appears above overlay */
}

.panel-image-container {
    position: relative;
    background-image: url('/assets/img/live-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Creates parallax effect */
}

.panel-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay - adjust opacity as needed */
    z-index: 1;
}

.panel-image-container > * {
    position: relative;
    z-index: 2; /* Ensures content appears above overlay */
}

.form-text{
    color:rgb(184 202 203 / 90%);
}

