/* RADHIKA STYLE THEME */
:root {
    --bg-color: #0b0033;
    --card-bg-start: #2b006f;
    --card-bg-end: #140033;
    --text-main: #fff;
    --text-accent: #ff4dd2;
    /* Pink */
    --text-gold: #ffd700;
    --btn-color: #00ff9d;
    /* Neon Green */
    --btn-text: #000;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* AUTH & DASHBOARD CONTAINERS will use this too for consistency */
.container {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
}

.card {
    background: linear-gradient(180deg, var(--card-bg-start), var(--card-bg-end));
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .5);
}

h1 {
    text-align: center;
    font-size: 24px;
    margin: 10px 0 5px;
}

h2 {
    text-align: center;
    font-size: 18px;
    color: var(--text-accent);
    margin: 0;
}

.sub {
    text-align: center;
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.8;
}

.salary {
    text-align: center;
    font-size: 22px;
    color: var(--text-gold);
    font-weight: bold;
    margin: 15px 0;
}

/* IMAGE */
.image-box {
    margin: 25px 0;
    text-align: center;
}

.image-box img {
    width: 100%;
    max-width: 300px;
    /* Limit size slightly just in case */
    border-radius: 18px;
    box-shadow:
        0 0 25px rgba(255, 0, 255, .6),
        0 0 45px rgba(0, 255, 255, .4),
        0 0 70px rgba(138, 43, 226, .6);
}

/* BUTTON */
.btn-wrap {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.btn {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    background: var(--btn-color);
    color: var(--btn-text);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.1s;
}

.btn:active {
    transform: scale(0.98);
}

.btn:hover {
    box-shadow: 0 0 15px var(--btn-color);
}

.section-title {
    color: var(--text-accent);
    font-weight: bold;
    margin: 20px 0 10px;
    text-align: center;
}

/* LIST ITEMS / GREEN TICK */
.apply-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.apply-list li:last-child {
    border-bottom: none;
}

.tick {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transform: rotate(-8deg);
    filter:
        drop-shadow(0 0 6px rgba(0, 255, 157, .9)) drop-shadow(0 0 14px rgba(0, 255, 157, .6));
}

.tick path {
    fill: none;
    stroke: #00ff9d;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tick .inner {
    stroke: #009e6f;
    stroke-width: 1.8;
}

/* Form Styles for Login/Register/Dashboard */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
}

.form-input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #444;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
}

.form-input:focus {
    border-color: var(--text-accent);
    outline: none;
}

.alert {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

.alert-error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid red;
    color: #ffcccc;
}

.alert-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid green;
    color: #ccffcc;
}

/* Dashboard Actions */
.action-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-danger {
    background: #ff4444;
    color: white;
}

.link-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-info {
    flex-grow: 1;
}

.link-title {
    font-weight: bold;
}

.link-url {
    font-size: 12px;
    opacity: 0.7;
}

/* FULL SCREEN POPUP (User Request) */
#forcePopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
}

#forcePopup .box {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 18px;
    max-width: 330px;
    text-align: center;
}

#forcePopup button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    background: #00c853;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

/* WhatsApp Icon SVG Style */
.wa-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
}