/* Main Category Component */
.main-category-component {
    background-color: #eee;
    font-size: 20px;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: 1px solid #ccc; /* Add border to component */
    outline: none;
    position: relative;
    margin-top: 5px; /* Add space between components */
}

/* Title Row Styling */
.main-category-title-row {
    font-weight: bold;
}

.main-category-title {
    text-decoration: none; /* Remove underline */
    color: #004080;
    font-size: 20px; /* Font size for the title */
    transition: color 0.3s;
}

.main-category-title:hover {
    color: #004080; /* Change color on hover */
}

/* Instruction Row Styling */
.instruction-row {
    font-size: 14px;
    color: #666;
    margin-top: 5px; /* Add spacing for instructions */
}

.instruction-row ul {
    list-style-type: disc;
    margin: 5px 0 0 20px; /* Indentation for list */
    padding: 0;
}
