#tours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
	background-color: #f0f0f0;
}

#tours-table th, #tours-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
	
}

.tours-table-header {
    background-color: white;
    font-weight: bold;
}

.confirmed-row {
    background-color: #d4edda; 
}

.unconfirmed-row {
    background-color: #f8d7da; 
}

.booking-link {
    color: #007bff;
    text-decoration: none;
}

.booking-link:hover {
    text-decoration: underline;
}


.confirm-button, .unconfirm-button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.confirm-button {
    background-color: #28a745;
    color: #fff;
}

.unconfirm-button {
    background-color: #dc3545;
    color: #fff;
}

.confirm-button:hover {
    background-color: #218838;
}

.unconfirm-button:hover {
    background-color: #c82333;
}


.confirmation-form {
    display: flex;
    gap: 10px;
}

#guides-dropdown-form, #sms-form {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.sms-form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-select-guide, .form-input, .form-textarea, .form-submit {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-submit {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #0056b3;
}

#sms-form-heading {
    font-size: 18px;
    margin-bottom: 20px;
	
}

#sms-form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-row {
    margin-bottom: 15px;
}
.sms-label-small {
    font-size: 12px;
}

.textarea-large {
    width: 100%; 
    height: 150px; 
    resize: both; 
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#sms-table th {
    cursor: pointer;
    background-color: #f9f9f9;
    padding: 10px;
}

#sms-table th:hover {
    background-color: #e0e0e0;
}

#sms-table th.sorted-asc::after {
    content: ' ▲';
}

#sms-table th.sorted-desc::after {
    content: ' ▼';
}
