/* Style for the collapsible buttons */
.collapsible {
    background-color: #87ceeb; /* Default color */
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Ensure the semicolon is present */
    margin-right: 5px;
    /* margin-left: 5px; */  /* Use CSS comment syntax */
}

/* Hover effect */
.collapsible:hover {
    background-color: #e6e6fa; /* Light blue color on hover87ceeb */
}

/* Style for the active state (when the collapsible is opened) */
.collapsible.active {
    background-color: #87ceeb; /* Same as default color6b8e23 */
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    margin-bottom: 20px; /* Add gap between resume rows */
}

.content.show {
    display: block;
}

/* Optional: Add a triangle icon to indicate the state */
.collapsible::before {
    content: '\25B6'; /* Unicode character for down triangle */
    font-size: 13px;
    color: white;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.collapsible.active::before {
    content: '\25B6'; /* Unicode character for up triangle */
    transform: rotate(90deg); /* Rotate */
}

/* Download section styles */

.download-link {
    display: inline-block; /* Make the link behave like a button */
    padding: 0.75rem 1.5rem; /* Add padding */
    background-color: #FFD700; /* Gold background */
    color: #333333; /* Dark text color */
    font-size: 1rem; /* Font size */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow effect */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
    margin-bottom: 5px; /* Ensure the semicolon is present */
    margin-right: 5px;
}

.download-link:hover {
    background-color: #FFBF00; /* Slightly darker gold on hover FFBF00 */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.download-link:active {
    background-color: #FF9F00; /* Even darker gold when clicked */
}
