/* view-registered-dogs.css */

.dog-info {
    padding: 20px;
    text-align: center;
}

.dog-details p {
    font-size: 1.2em;
    margin: 5px 0;
}

#dogsTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

#dogsTable th, #dogsTable td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

#dogsTable th {
    background-color: #063572 !important; /* Charcoal background */
    color: #e9e9e9 !important; /* Light grey text for the header */
}

#dogsTable td {
    background-color: #f9f9f9; /* Light grey background for rows */
    font-size: 18px;
    color: #063572 !important; /* Navy text color */
}

#dogsTable tbody tr:nth-child(odd) {
    background-color: #f1f1f1; /* Slightly darker grey for odd rows */
}

#dogsTable tbody tr:hover {
    background-color: #e0e0e0; /* Highlight row on hover */
}

#dogsTable img {
    width: 50px;
    height: auto;
}

.dog-photo-preview {
    max-width: 200px;
    margin-top: 20px;
}

.dog-info h3, .dog-info .dog-details p {
    color: #063572; /* Navy color for the details */
}

.dog-info h4 {
    color: #ca2026; /* Red color for Call Name */
}

.dog-info .dog-details {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.dog-info .dog-details p {
    margin: 0;
}

.dog-info .dog-details p strong {
    margin-right: 5px;
}

.table-container h2 {
    text-align: center;
    color: #063572; /* Navy color for the title */
}

#chartTitle {
    color: #063572; /* Navy color for the title */
    text-align: center;
    margin-top: 30px;
}

#chartContainer {
    background-color: #e9e9e9; /* Light grey background */
    border: 2px solid #063572; /* Navy border */
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}
