/* Table styling */
#dogsTable {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    border-radius: 8px; /* Add rounded corners to the outermost corners */
    overflow: hidden; /* Ensure rounded corners are applied */
}

/* Header styling */
#dogsTable th {
    font-weight: bold;
    background-color: #063572 !important; /* Charcoal background for header */
    color: #f9f9f9 !important; /* Light grey for header text */
}

/* Table cell styling */
#dogsTable th, #dogsTable td {
    padding: 8px;
    text-align: left;
    font-size: 14px;
    color: #063572 !important; /* Charcoal font color */
}

/* Alternate row styling */
#dogsTable tbody tr:nth-child(odd) {
    background-color: #e9e9e9 !important; /* Slightly darker grey for odd rows */
}

#dogsTable tbody tr:nth-child(even) {
    background-color: #ffffff !important; /* White background for even rows */
}

/* Hover effect for table rows */
#dogsTable tbody tr:hover {
    background-color: #e0e0e0 !important; /* Highlight row on hover */
}

/* Image in table cells */
#dogsTable img {
    width: 50px;
    height: auto;
}

/* DataTables UI elements */

/* Pagination controls */
#dogsTable_paginate .paginate_button {
    color: #063572 !important; /* Charcoal for pagination numbers */
    background-color: #d6d6d6; /* Charcoal background */
    border: none; /* Remove border */
}

#dogsTable_paginate .paginate_button:hover {
    color: #ca2026 !important; /* Red text on hover */
}

#dogsTable_paginate .paginate_button.current {
    color: #ca2026 !important; /* Red text for the current page */
}

/* Pagination numbers specifically */
#dogsTable_paginate .paginate_button.page-item {
    color: #ffea96 !important; /* Light yellow for the page numbers */
}

/* Search input box */
#dogsTable_filter input {
    color: #063572; 
    background-color: #b3b3b3; /* Darker background */
    border: 1px solid  #063572; /* Border color */
}

/* Length select box (items per page) */
#dogsTable_length select {
    color: #063572; /* Text */
    background-color: #b3b3b3; /* Darker background */
    border: 1px solid  #063572; /* Border color */
}

/* Info text (e.g., "Showing 1 to 10 of 50 entries") */
#dogsTable_info {
    color:  #063572 !important; /* Charcoal color */
}

/* Other DataTables elements like sorting buttons */
#dogsTable_length, #dogsTable_filter, #dogsTable_info {
    color: #ca2026; /* Red for additional interface text */
}

#dogsTable_filter label, #dogsTable_length label {
    color:  #063572; /* Charcoal label text color */
}

/* Sorting icons */
#dogsTable thead .sorting:after, 
#dogsTable thead .sorting_asc:after, 
#dogsTable thead .sorting_desc:after {
    color: #ffea96 !important; /* Light yellow for sorting arrows */
}

/* Adjust DataTables buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 6px 12px !important;
    margin-left: 2px !important;
    margin-right: 2px !important;
    border-radius: 4px !important;
}

 /* Style for the submit button on the Update Dog page */
    form button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #444444; /* Button background color */
    color: white;
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 1.1rem;
}

    /* Add hover effect for the submit button */
    form button[type="submit"]:hover {
        background-color: #333333; /* Darken button on hover */
}

    .column textarea {
    width: 100%; /* Ensure it matches the width of the other fields */
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 8px; /* Rounded corners */
    border: 1px solid #ccc; /* Light border */
    background-color: #fff; /* White background */
}

/* Style for the "Select Event" dropdown */
#event-select {
    width: 100%;
    padding: 12px 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #063572; /* Charcoal border */
    background-color: #ffffff; /* White background */
    color: #063572; /* Charcoal text */
}

/* Style for the "Save Results" button */
#fast-cat-form button {
    width: 100%;
    padding: 12px 25px;
    background-color: #444444; /* Button background color */
    color: white;
    border: none;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Add hover effect for the "Save Results" button */
#fast-cat-form button:hover {
    background-color: #333333; /* Darken button on hover */
}