/* ============================
   GLOBAL LAYOUT
============================ */

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #eef1f6;
}

/* Container Card */
.card {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Headings */
h2, h1 {
    text-align: center;
    color: #0a2a63;
    font-weight: 700;
}

/* ============================
   FORM + INPUTS
============================ */

label {
    font-weight: 600;
    color: #1b1b1b;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cfd4df;
    background: #fafafa;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Orange Primary Button */
button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #ff7b22;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: #e06404;
}

/* ============================
   TABLE STYLES (Screenshot 2)
============================ */

.table-card {
    width: 95%;
    max-width: 1300px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.table-header {
    background: #0a2a63;
    color: white;
    padding: 12px;
    font-weight: 700;
    border-radius: 10px 10px 0 0;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    background: #0a2a63;
    padding: 14px;
    color: white;
    font-weight: 600;
}

.results-table td {
    padding: 14px;
    border-bottom: 1px solid #ececec;
    font-size: 15px;
}

/* Highlight Row */
.highlight-row {
    background: #ffe7c6;
}

/* Copy Email Button */
.copy-btn {
    background: #ff7b22;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
    color: white;
    font-size: 14px;
    cursor: pointer;
}
.copy-btn:hover {
    background: #df5f02;
}

/* ============================
   LOADING SCREEN (Screenshot 1)
============================ */

.loading-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-card {
    width: 550px;
    background: white;
    padding: 55px 40px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0px 15px 50px rgba(0,0,0,0.2);
}

.loader {
    border: 6px solid #e6e6e6;
    border-top: 6px solid #113d79;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    margin-top: 10px;
    color: #113d79;
}
