/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Outer Box */
.thought-box {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    max-width: 1600px;
    margin: 0px auto;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Ultra Slim Blue Header */
.thought-header {
    background-color: #1a23d1; /* Royal Blue */
    color: #ffffff;
    font-weight: 700;
    font-size: 20px; /* Keep large */
    line-height: 38px; /* Maintain readable height */
    padding: 0; /* No extra padding */
    border-radius: 10px 10px 0 0;
    letter-spacing: 0.3px;
}

/* Thought Text */
.thought-content {
    font-size: 17px;
    color: #111827;
    font-weight: 500;
    line-height: 1.8;
    padding: 20px;
    text-align: center;
    word-break: break-word;
}
