/* Frontend Styles for Definition Block */
.definition-block {
    position: relative;
    border: 1px solid #E1E1E8;
    padding: 20px;
    margin: 30px 0;
    background-color: transparent; /* Made background transparent */
    border-radius: 10px; /* Added rounded borders */
}

.definition-block::before {
    content: "Definition:";
    position: absolute;
    top: 10px; /* Positioned at the top */
    left: 10px; /* Positioned slightly inside the border */
    background-color: transparent; /* Made background transparent */
    padding: 0 10px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.definition-block p {
    margin-top: 25px; /* Added top margin to prevent text overlap with label */
}

/* Responsive Adjustment */
@media (max-width: 600px) {
    .definition-block::before {
        top: 5px; /* Adjusted for smaller screens */
        left: 5px;
        font-size: 14px;
    }

    .definition-block p {
        margin-top: 20px; /* Adjusted top margin */
    }
}
