/* Gray out background when modal is active */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

/* Center modal content */
.modal-content {
	display: none;
    background: #fff;
	color: black !important;
    padding: 20px;
    width: 400px;
    max-width: 90%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
	text-align: center !important;
}

/* Style buttons */
button {
    padding: 6px 12px;
    margin: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
}

.other-btn {
	padding: 10px 12px !important;
    margin: 10px !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 16px !important;
    border-radius: 5px !important;
	background: #a5f8af !important;
    color: black !important;
}
.other-btn:hover {
    background: #000000 !important;
	color:white !important;
}

/* Approve & Decline buttons */
.approve-btn, .decline-btn {
    background: #a5f8af;
    color: black;
}

.approve-btn:hover {
    background: #000000;
}

.decline-btn {
    background: #ff9d9d;
}

.decline-btn:hover {
    background: #000000;
}

/* Modal buttons */
#confirm-approve, #submit-decline {
    background: green;
    color: white;
}

#confirm-approve:hover, #submit-decline:hover {
    background: darkgreen;
}

#cancel-approve, #cancel-decline {
    background: gray;
    color: white;
}

#cancel-approve:hover, #cancel-decline:hover {
    background: darkgray;
}

/* Decline text area */
textarea#decline-reason {
    width: 100%;
    height: 100px;
    padding: 8px;
    font-size: 14px;
	color: black !important;
}

.instructions {
width: 100%;
max-width: 900px;
background-color: #efefef;
border-radius: 15px;
color: black;
padding:15px;
margin: 0 auto;
text-align: left;
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #66b3ff; /* Light blue */
    color: black;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important;
    border-radius: 8px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.download-btn:hover {
    background: #3399ff; /* Slightly darker blue */
    box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.3);
	color: black !important;
}


