/* public/public-styles.css */
.ccc-course-content-wrapper {
    width: 100%;
    max-width: 800px; /* Adapte conforme necessário */
    margin: 20px auto;
    font-family: Arial, sans-serif;
    color: #333;
}

.ccc-course-content-wrapper h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.ccc-course-summary {
    display: flex;
    justify-content: flex-end; /* Alinha à direita, como no print */
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-right: 10px;
}

.ccc-course-summary p {
    margin: 0 10px;
}

.ccc-discipline-header {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.ccc-discipline-header:hover {
    background-color: #f0f0f0;
}

.ccc-discipline-header h3 {
    margin: 0;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    flex-grow: 1; /* Ocupa o espaço restante */
}

.ccc-toggle-icon {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666; /* Seta para baixo */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ccc-discipline-header.active .ccc-toggle-icon {
    transform: rotate(180deg); /* Seta para cima quando ativo */
}

.ccc-discipline-content {
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 15px;
    margin-bottom: 5px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
}

.ccc-discipline-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ccc-discipline-content ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ccc-discipline-content ul li:last-child {
    border-bottom: none;
}

.ccc-content-name {
    font-weight: normal;
    color: #444;
}

.ccc-content-hours {
    font-weight: bold;
    color: #777;
    font-size: 0.9em;
}