/* General Styles */
#pageTitle {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
}

h3 {
    font-size: 1.5rem;
}

/* Layout */
#breedList {
    width: 33.33%;
    float: left;
    background-color: #eee;
    padding: 20px;
    box-sizing: border-box;
}

#bodyRender, #forms {
    width: 66.66%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

#bodyRender {
    height: 50%;
}

#forms {
    height: 50%;
    background-color: #f5f5f5;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

label {
    margin-bottom: 10px;
}

input[type="text"] {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #3e8e41;
}

/* Dog List Styles */
#breedList ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

#breedList li {
    cursor: pointer;
    padding: 10px;
}

#breedList li:hover {
    background-color: #ddd;
}

/* Dog Image Styles */
#breedRender {
    text-align: center;
    margin-top: 20px;
}

#breedRender img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Comment List Styles */
#commentList {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

#commentList li {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
