/* Basic styles */
.iprofiles-form { max-width: 600px; margin:auto; }
.iprofiles-step { display:none; }
.iprofiles-step.active { display:block; }
.iprofiles-list table { width:100%;border-collapse:collapse; }
.iprofiles-list th, .iprofiles-list td { border:1px solid #ccc; padding:6px; }
.iprofiles-profile img { max-width:150px; display:block; margin-bottom:10px; }
.iprofiles-pagination { margin-top:10px; text-align:center; }
.iprofiles-search input { margin-bottom:10px; padding:4px 8px; width:200px; }
/* =======================
   General Styles
   ======================= */
.iprofiles-list, 
.iprofiles-profile {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* =======================
   Applicants Table
   ======================= */
.iprofiles-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #ddd;
}

.iprofiles-table th,
.iprofiles-table td {
    padding: 10px 12px;
    border: 1px solid #eee;
    text-align: left;
}

.iprofiles-table th {
    background: #f5f7fa;
    font-weight: 600;
    color: #444;
}

.iprofiles-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.iprofiles-table a.button {
    padding: 6px 10px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
}
.iprofiles-table a.button:hover {
    background: #005d8c;
}

/* =======================
   Pagination
   ======================= */
.iprofiles-pagination {
    margin-top: 15px;
    text-align: center;
}

.iprofiles-pagination a {
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
}

.iprofiles-pagination a:hover {
    background: #0073aa;
    color: #fff;
}

/* =======================
   Search Box
   ======================= */
.iprofiles-search-form {
    margin-bottom: 10px;
    text-align: right;
}
.iprofiles-search-form input[type="text"] {
    padding: 6px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.iprofiles-search-form button {
    padding: 6px 12px;
    border: none;
    background: #0073aa;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}
.iprofiles-search-form button:hover {
    background: #005d8c;
}

/* =======================
   Single Profile
   ======================= */
.iprofiles-profile {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.iprofiles-profile h2 {
    margin-top: 0;
    font-size: 22px;
    color: #222;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 6px;
}

.iprofiles-profile h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #0073aa;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.iprofiles-profile p {
    margin: 5px 0;
}

.iprofiles-profile img {
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.iprofiles-profile a.button {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.iprofiles-profile a.button:hover {
    background: #005d8c;
}
/* ===========================
   Profile Cards
   =========================== */
.iprofiles-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 20px auto;
}

.iprofile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f5fb;
    border-radius: 12px;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.iprofile-photo {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iprofile-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4b2cc5;
}
.iprofile-initials {
    width: 120px;
    height: 120px;
    background: #4b2cc5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.iprofile-info {
    flex: 1;
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.iprofile-main {
    font-size: 14px;
}
.iprofile-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
.iprofile-edu,
.iprofile-cert,
.iprofile-exp {
    margin-bottom: 3px;
}

.iprofile-skills {
    margin-left: 40px;
    font-size: 14px;
}
.iprofile-skills-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.iprofile-action {
    margin-left: 20px;
}
.iprofile-btn {
    background: #ff2553;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}
.iprofile-btn:hover {
    background: #e31b48;
}

/* Pagination */
.iprofiles-pagination {
    margin-top: 20px;
    text-align: center;
}
.iprofiles-pagination a {
    padding: 6px 12px;
    margin: 0 3px;
    border: 1px solid #ccc;
    background: #fff;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
}
.iprofiles-pagination a:hover {
    background: #ff2553;
    color: #fff;
}
