:root {
	--primary-color: #0033A0;
	--primary-hover-color: #0041ca;
	--dark-blue: #00184b;
	--white: #c4c4c4;
}

body {
    background: url('/images/tarkett-hospitality-hotel-l-800x536.jpg') no-repeat center center fixed;
    background-size: cover;
}

header {
	padding: 10px;
	margin: 0;
}
.hidden {
	display: none;
}
.white {
	color: white !important;
}
.red {
	color: red !important;
}

.small-font {
	font-size: 11px;
}

.visitorImage {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* Makes it circular */
    border: 5px solid white; /* Frame */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow */
}

.required::after {
    content: " *";
    color: red;
}

.form-label {
	color: #ccc !important;
}

.form-control-xl {
    font-size: 30px;
    padding: 1.25rem;
    height: 4rem;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.black-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 100px 0px;
}

.black-box .form-label, .black-box h4 {
    color: var(--white);
}

.fieldset {
  	min-width: initial;
  	padding: 20px;
  	margin: initial;
  	border: 1px solid var(--white);
  	border-radius: 5px;
}

.legend {
	font-weight: bold;
	font-size: 30px;
	float: initial;
	width: initial;
	padding: 0px 10px;
	margin-bottom: initial;
	line-height: initial;
	color: var(--white);
}

.dashboard-nav {
    background: rgba(0, 0, 0, 0.8); 
    border-radius: 10px;
    padding: 10px;
}
.dashboard-nav .nav-link {
    color: white !important;
}
.dashboard-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    font-size: 18px;
    font-weight: bold;
}


/** LARGE FORMAT VISITOR FORM **/
.xl-input-container {
	margin: 10px 0px;
}
.xl-label {
	display: block;
	font-size: 24px;
	color: var(--white);
}
.xl-input {
	display: block;
	border: none;
	border-radius: 4px;
	width: 99%;
	padding: 5px;
	font-size: 40px;
	color: var(--white);
	text-align: center;
}
.xl-input-container input,
.xl-input-container select {
    color: #000 !important;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
}

.xl-button {
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    background-color: var(--white);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    width: 500px;
}

.mobile {
    display: none;
}

.non-mobile {
    display: table-cell;
}

@media (max-width: 768px) {
  	header {
    	flex-direction: column;
    	align-items: flex-start;
  	}
 	header img {
    	max-width: 100%;
  	}
  	header div {
    	width: 100%;
    	text-align: left;
  	}
    .mobile {
        display: block; /* Show mobile content */
    }

    .non-mobile {
        display: none; /* Hide non-mobile content */
    }
}