/* ============================================================
   CARD / CONTAINERS
============================================================ */

.androlab-card {
    background: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    transition: 0.25s;
}

.androlab-card:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.androlab-card-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* ============================================================
   FORM LAYOUT
============================================================ */

.androlab-form label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.androlab-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.androlab-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.androlab-radio {
    display: flex;
    gap: 25px;
}

.androlab-radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* ============================================================
   BUTTONS
============================================================ */

.androlab-btn-primary {
    background: #F05323;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.androlab-btn-primary:hover {
    background: #005c87;
}

.androlab-btn-small {
    padding: 5px 10px;
    background: #F05323;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}

.androlab-btn-small:hover {
    background: #005c87;
}

/* Success Banner */
.androlab-success {
    background: #e8f7e8;
    color: #277a27;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ============================================================
   TABLE STYLES
============================================================ */

.androlab-table {
    width: 100%;
    border-collapse: collapse;
}

.androlab-table th {
    background: #fafafa;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.androlab-table td {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* ============================================================
   ENHANCED FORM INPUT STYLING
============================================================ */

.androlab-form input[type="text"],
.androlab-form input[type="number"],
.androlab-form input[type="email"],
.androlab-form input[type="tel"],
.androlab-form textarea,
.androlab-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    transition: all 0.25s ease-in-out;
    box-sizing: border-box;
}

/* Hover */
.androlab-form input:hover,
.androlab-form textarea:hover,
.androlab-form select:hover {
    border-color: #999;
}

/* Focus highlight */
.androlab-form input:focus,
.androlab-form textarea:focus,
.androlab-form select:focus {
    border-color: #F05323;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.25);
    outline: none !important;
}

/* Textarea adjustments */
.androlab-form textarea {
    min-height: 110px;
    resize: vertical;
}
