/* Styling for the dog list container */
#dog-list {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid black;
    padding: 10px;
    background-color: #e2d8a4;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: monospace;
}

/* Styling for each dog item in the list */
.dog-item {
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid #7a7229;
}

/* Hover effect for dog items */
.dog-item:hover {
    background-color: #f0f0f0;
}

/* Styling for the dog details container */
#dog-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #e0d0bc;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for each section of dog details */
.info-section {
    width: 100%;
    margin-bottom: 20px;
}

/* Styling for headings in dog details sections */
.info-section h3 {
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #f4a261;
    padding-bottom: 5px;
}

/* Styling for general content, male content, and female content */
#general-content, #male-content, #female-content {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f4e1;
}

/* Styling for the dog image container */
#dog-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Styling for the dog image */
#dog-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for the welcome text */
#WelcomeText{
color: whitesmoke;
font-size: 20px;
text-align: center;
font-weight: bold;
}




