body {
    background-color: #2b2b2b;
    color: #f5f5f5;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h2,h3, h5, .form-group label, .form-control1 label{
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
}

.navbar-custom {
    background-color: #1c1c1c;
}

.navbar-brand, .nav-link {
    font-family: 'Didot', sans-serif;
    font-size: larger;
    color: #d4af37;
    text-shadow: 1px 1px 0px #000000;
}

.navbar-brand:hover {
    color: #ffffff;
}

.navbar-brand {
    font-size: 2em;
}

.navbar-nav .nav-item .nav-link {
    padding: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #d4af37;
}

.navbar-nav .nav-item .nav-link.active {
    text-decoration: underline;
    color: #0c0c0c;
}

.dropdown-menu-dark {
    background-color: #030303;
}

.dropdown-item {
    color: #b8b4b4;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: #424242;
    color: #d4af37;
}

.carousel-item img {
    object-fit: cover;
    object-position: center;
    max-height: 500px;
}

.movie-card {
    background-color: #3d3d3d;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.movie-card .card-img-top {
    height: 500px;
    object-fit: cover;
}

.movie-card .card-title {
    color: #d4af37;
}

.movie-card .card-text {
    color: #cccccc;
}

footer {
    background-color: #343a40;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
    color: #f5f5f5;
    width: 100%;

    bottom: 0;
}

.btn-primary {
    font-size: 14px;
    padding: 8px 16px;
    background-color: #d4af37;
    border-color: #d4af37;
    display: block;
    width: 100%;
}

.btn-primary:hover, .btn-primary.active, .btn-primary:focus{
    background-color: #5b514d !important; 
    border-color: #5b514d !important ;
    display: block !important ;
    width: 100% !important ;
    box-shadow: none;
    outline: none;
}


.custom-btn {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
    display: block;
    width: 100%;
}

.custom-submit-btn {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
    display: block;
    width: 100%;
}

.form-control,
input[type="number"],
input[type="text"],
select {
    width: calc(100% - 22px);
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.form-control1 {
    width: 20%;
    font-size: 14px;
    color: #333;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: auto;
    display: block; 
}

.modal-content{
    background-color: #1c1c1c; 
    color: #1c1c1c;

}
.modal-header{
    border-bottom: 1px rgb(0, 0, 0);
}

 
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #d4af37;
    color: #333;
}

table td {
    background-color: #3d3d3d;
    color: #cccccc;
}


