body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #e6f3ff; /* Light blue background */
}

#control-panel {
    padding: 10px;
    background-color: #ffe6e6;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#api-key {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

#make-song, #make-music {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    width: 48%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
}

#content {
    flex: 1;
    display: flex;
    flex-direction: row;
}

#story-panel {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: #ccebff; /* Slightly darker shade of light blue */
    margin: 10px;
    border-radius: 8px;
}

textarea {
    flex: 1;
    width: 100%;
    resize: none;
    border: 1px solid #99d6ff; /* Light blue border */
    padding: 10px;
    box-sizing: border-box;
    background-color: #e6f7ff; /* Very light blue background for textareas */
    border-radius: 4px;
}

#song-panel {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: #e6ffcc;
    margin: 10px;
    border-radius: 8px;
}

.textarea-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    flex: 0 0 auto;
}

.textarea-container:first-child {
    flex: 1 0 auto;
}

#lyrics {
    height: 300px;
    min-height: 300px;
    flex: 0 0 auto;
    margin-bottom: 10px;
}

#full-response {
    height: 300px;
    min-height: 300px;
    flex: 0 0 auto;
    margin-bottom: 10px;
    overflow-y: auto;
    border: 1px solid #99d6ff;
    padding: 10px;
    box-sizing: border-box;
    background-color: #e6f7ff;
    border-radius: 4px;
    white-space: pre-wrap;
    font-family: Arial, sans-serif;
}

#music_style, #title {
    height: 60px;
    min-height: 60px;
    flex: 0 0 auto;
    margin-bottom: 10px;
}

.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.copy-btn {
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #45a049;
}

.eye-btn {
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.eye-btn:hover {
    background-color: #f0f0f0;
}

.select-container {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

#style-select, #prompt-select, #model-select {
    flex: 1;
    padding: 5px;
    border: 1px solid #99d6ff;
    border-radius: 4px;
    background-color: #e6f7ff;
}
