/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background:#f5f7fa;
    color:#333;
}

/* ================================
   CLEAN GLOBAL SAAS NAVBAR
   ================================ */

.rk-navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    background:#15A0E6;
}

.rk-logo {
    font-size:22px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

/* Hamburger (Mobile) */
.rk-menu-btn {
    background:white;
    color:#15A0E6;
    font-size:22px;
    padding:6px 12px;
    border:none;
    border-radius:8px;
    display:none;
}

/* MENU AREA */
.rk-menu {
    display:flex;
    gap:18px;
    align-items:center;
}

.rk-item {
    text-decoration:none;
    color:#fff;
    font-size:16px;
    opacity:0.9;
}

.rk-item:hover {
    opacity:1;
}

/* LOGIN (text link) */
.rk-link {
    color:#fff;
    font-size:16px;
    text-decoration:none;
    opacity:0.9;
}

.rk-link:hover {
    opacity:1;
}

/* CTA BUTTON: Hemen Başla */
.rk-cta {
    background:white;
    color:#15A0E6 !important;
    padding:8px 18px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
}

.rk-cta:hover {
    background:#eef6ff;
}

/* ================================
   MOBILE VERSION
   ================================ */
@media(max-width:768px){

    .rk-menu-btn { display:block; }

    .rk-menu {
        display:none;
        flex-direction:column;
        background:white;
        width:100%;
        margin-top:12px;
        padding:12px 0;
        border-radius:10px;
        position:absolute;
        top:60px;
        left:0;
        z-index:99;
    }

    .rk-menu.open {
        display:flex;
    }

    .rk-item,
    .rk-link {
        color:#333;
        padding:12px 18px;
        font-size:17px;
        width:100%;
        border-bottom:1px solid #eee;
    }

    /* CTA mobile */
    .rk-cta {
        background:#15A0E6;
        color:white !important;
        width:90%;
        margin:10px auto;
        text-align:center;
        padding:12px;
    }
}

/* ================================
   PAGE CONTENT
   ================================ */
.content-wrapper {
    padding:20px;
    max-width:900px;
    margin:auto;
}

/* ================================
   AUTH PAGES
   ================================ */
.auth-container {
    background: #fff;
    padding: 30px;
    max-width: 420px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #15A0E6;
    font-size: 26px;
}

.auth-container label {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #444;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 6px;
}

.auth-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #15A0E6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.auth-btn:hover {
    background: #0b7fbb;
}

.auth-text {
    text-align: center;
    margin-top: 18px;
}

.role-box {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}
/* ================================
   REQUEST DETAIL PAGE (rd-*)
   ================================ */

.request-detail {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}

.rd-title {
    font-size: 26px;
    color: #15A0E6;
    margin-bottom: 20px;
    font-weight: 700;
}

/* KART YAPISI */
.rd-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.rd-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.rd-meta {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* STATUS BADGE */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-top: 10px;
}

/* Status renkleri */
.status-pending  { background: #f0ad4e; }
.status-approved { background: #5cb85c; }
.status-assigned { background: #0275d8; }
.status-closed   { background: #777; }

/* SELECT + BUTTON */
.rd-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 10px;
    font-size: 15px;
}

.rd-btn {
    margin-top: 14px;
    padding: 12px 20px;
    background: #15A0E6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.rd-btn:hover {
    background:#0b7fbb;
}

/* Disabled button */
.rd-disabled {
    background: #ccc !important;
    cursor: not-allowed;
}
