/* ============================================
   Audioguide Customer UI Framework (Global)
   ============================================ */

body.ag-page {
    background: #f6f8fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
}

/* CONTAINER */
.ag-container {
    width: 100%;
    max-width: 430px;
    padding: 20px;
    margin: 60px auto;
}

/* CARD */
.ag-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* TITLES */
.ag-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111827;
}

.ag-sub-title {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* INPUTS */
.ag-input {
    width: 100%;
    padding: 13px 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.ag-input:focus {
    border-color: #0b7cff;
    outline: none;
}

/* TEXTAREA */
.ag-input textarea {
    min-height: 110px;
}

/* BUTTON */
.ag-btn {
    width: 100%;
    padding: 13px;
    font-size: 16px;
    background: #0b7cff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
    text-align: center;
}

.ag-btn:hover {
    background: #066de0;
}

/* MESSAGE BOX */
.ag-msg {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
    color: #444;
    min-height: 20px;
}

/* LINKS */
.ag-links {
    margin-top: 22px;
    text-align: center;
}

.ag-links a {
    color: #0b7cff;
    text-decoration: none;
    font-size: 14px;
}

.ag-links a:hover {
    text-decoration: underline;
}

/* LIST STYLE (Dashboard) */
.ag-card ul {
    padding-left: 18px;
    margin: 10px 0 20px;
}

.ag-card ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.ag-card ul li a {
    color: #0b7cff;
    text-decoration: none;
}

.ag-card ul li a:hover {
    text-decoration: underline;
}

/* LOGOUT BUTTON */
.ag-logout {
    display: inline-block;
    margin-top: 16px;
    width: 100%;
}

/* ============================================
   RESPONSIVE MOBILE FIXES
   ============================================ */
@media (max-width: 390px) {
    .ag-container {
        padding: 15px;
        margin-top: 40px;
    }
    .ag-card {
        padding: 22px;
    }
    .ag-title {
        font-size: 22px;
    }
}
