/* Wrapper do botão */
.scp-download-wrapper {
    display: block;
    clear: both;
    margin-top: 10px;
}

/* Botão de download do estudante */
.scp-student-download {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #eee;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.scp-student-download:hover {
    background-color: #e0e0e0;
    color: #000;
}

.scp-student-download.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.scp-student-download .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 18px;
}

/* Animação de loading */
.scp-student-download .spin {
    animation: scp-spin 1.5s infinite linear;
}

@keyframes scp-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}