body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #333;
}

.situation-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#situation {
    min-height: 60px;
    margin-bottom: 10px;
}

#generate-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.thoughts-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.thought-bubble {
    width: 45%;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.thought-bubble textarea {
    width: 100%;
    height: 100px;
    border: none;
    resize: none;
}

.emotions-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.emotion-box {
    width: 45%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.emotion-box textarea {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    resize: none;
}

.intensity-label {
    display: block;
    margin-top: 5px;
}

.behaviors-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.behavior-box {
    width: 45%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.behavior-box textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
    resize: none;
}

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

#home-btn, #refresh-btn {
    background-color: #4CAF50;  /* Changed to green */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;  /* Added for smooth color transition on hover */
}

#home-btn:hover, #refresh-btn:hover {
    background-color: #45a049;  /* Darker green on hover */
}

.notes-container {
    margin-top: 20px;
}

#generate-notes-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

#notes-field {
    margin-top: 10px;
}

#notes-field.hidden {
    display: none;
}

#notes-text {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

#copy-notes-btn {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 5px;
}