.smartschool-link-container {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    border-top: 2px solid #e0e0e0;
}

.smartschool-link-button {
    display: inline-block;
    padding: 12px 25px;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}

.smartschool-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: white !important;
}

.smartschool-link-minimal {
    display: inline-block;
    font-size: 24px;
    padding: 10px;
    text-decoration: none !important;
    transition: transform 0.3s;
}

.smartschool-link-minimal:hover {
    transform: scale(1.2);
}

.smartschool-link-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.smartschool-link-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.smartschool-link-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.smartschool-link-actions {
    display: flex;
    gap: 10px;
}

.smartschool-link-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 13px;
    font-family: monospace;
}

.smartschool-link-copy-btn {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
}

.smartschool-link-copy-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .smartschool-link-actions {
        flex-direction: column;
    }
}