/* Moodle API Connector Styles */
/* Container Styles */
.moodle-login-container,
.moodle-info-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.moodle-login-container {
    max-width: 400px;
}

/* Form Styles */
.moodle-login-form .form-group {
    margin-bottom: 15px;
}

.moodle-login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.moodle-login-form input[type="text"],
.moodle-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

/* Button Styles */
.moodle-login-button,
.moodle-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s;
}

.moodle-login-button:hover,
.moodle-button:hover {
    background-color: #005177;
    color: white;
    text-decoration: none;
}

.moodle-button.logout {
    background-color: #d9534f;
}

.moodle-button.logout:hover {
    background-color: #c9302c;
}

/* Message Styles */
.moodle-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 3px;
}

.moodle-message.error {
    background-color: #ffdddd;
    border: 1px solid #ffcccc;
    color: #d8000c;
}

.moodle-message.success {
    background-color: #ddffdd;
    border: 1px solid #ccffcc;
    color: #4F8A10;
}

/* Loading Indicator */
.moodle-login-button.loading {
    position: relative;
    padding-left: 35px;
}

.moodle-login-button .spinner {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: moodle-spin 1s infinite linear;
}

@keyframes moodle-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Already Logged In */
.moodle-already-logged-in {
    text-align: center;
}

.moodle-buttons {
    margin-top: 15px;
}

.moodle-buttons .moodle-button {
    margin: 0 5px;
}

/* User Info Table */
.moodle-user-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.moodle-user-info-table th,
.moodle-user-info-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.moodle-user-info-table th {
    width: 30%;
    font-weight: bold;
    background-color: #f2f2f2;
}

.moodle-user-info-table pre {
    margin: 0;
    padding: 5px;
    background-color: #f5f5f5;
    border-radius: 3px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 150px;
    overflow-y: auto;
}

/* Info Buttons */
.moodle-info-buttons {
    margin-top: 20px;
    text-align: center;
}