/* Collapsible styles */
.collapsible {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-top: 0px;
    position: relative;
    padding-left: 20px;  /* Make room for the arrow */
}

.collapsible:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8' fill='%23444444'%3E%3Cpath d='M2 0 L2 8 L7 4 Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    transition: transform 0.2s ease-out;
}

.active:before {
    transform: translateY(-50%) rotate(90deg);
}

.active, .collapsible:hover {
    background-color: #f4f4f4;
}

.project-content {
    padding: 0px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
}

.project-section {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px 0;
    /* border-left: 3px solid #cf8a05; */
    /* background-color: #f9f9f9; */
}

.project-section h4 {
    font-size: 18px;
    color: #1f853f;
    margin-bottom: 6px;
}

.project-section ul li {
    margin-left: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: 1.4em;
}

.project-section div {
    margin-bottom: 5px;
    margin-top: 5px;
    line-height: 1.4em;
}

.project-section b {
    font-weight: bold;
}

.project-section .indent {
    margin-left: 20px;
}