/* 
 * Consolidated page-specific.css
 * Contains styles for specific pages (options, test, etc.)
 */

/* ====== OPTIONS PAGE STYLES ====== */
.option-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #00549F;
}

.option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 84, 159, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover .option-icon {
    background-color: rgba(0, 84, 159, 0.2);
    transform: scale(1.1);
}

/* ====== TEST PAGE STYLES ====== */
.test-box {
    background-color: white;
    border: 2px solid #00549F;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.test-page {
    background-color: #e6f2ff;
}

.test-page h1 {
    color: #00549F;
}

.test-page p {
    color: #333;
}

/* ====== BASIC INDEX PAGE STYLES ====== */
.basic-index-body {
    background-color: #f5f7fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header {
    background-color: #e6f2ff;
    padding: 15px;
    border-bottom: 1px solid #e1e8ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #e1e8ed;
    display: flex;
}

.chat-input textarea {
    flex: 1;
    border-radius: 20px;
    padding: 10px 15px;
    border: 1px solid #e1e8ed;
    resize: none;
}

.send-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4e8dcb;
    color: white;
    border: none;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}