/* Base Styles */
:root {
    --primary-color: #2271b1;
    --primary-hover: #135e96;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Reset Styles */
.tjp-profile-wrapper *,
.tjp-profile-wrapper *::before,
.tjp-profile-wrapper *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.tjp-profile-wrapper a {
    text-decoration: none !important;
    color: inherit;
}

/* Job Search Results Styles */
.tjp-job-results {
    max-width: 1200px;
    margin: 2rem auto;
}

.tjp-results-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.tjp-no-results {
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
}

/* Job Card Styles */
.tjp-job-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tjp-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tjp-job-header {
    margin-bottom: 1rem;
}

.tjp-job-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.tjp-company-name {
    color: #666;
    font-size: 1.1rem;
    display: block;
}

.tjp-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.tjp-job-meta span {
    display: inline-flex;
    align-items: center;
    color: #666;
}

.tjp-job-meta i {
    margin-right: 0.5rem;
    color: #3498db;
}

.tjp-job-description {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
}

.tjp-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.tjp-job-stats {
    color: #666;
    font-size: 0.9rem;
}

.tjp-apply-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.tjp-apply-button:hover {
    background: #2980b9;
    color: #fff;
    text-decoration: none;
}

/* Pagination Styles */
.tjp-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.tjp-page-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tjp-page-link:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.tjp-page-link.current {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

/* Loading State */
.tjp-loading {
    text-align: center;
    padding: 2rem;
}

.tjp-loading:after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tjp-login-form-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tjp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tjp-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tjp-form label {
    font-weight: 600;
    color: #333;
}

.tjp-form input[type="text"],
.tjp-form input[type="password"],
.tjp-form input[type="email"] {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tjp-form input[type="text"]:focus,
.tjp-form input[type="password"]:focus,
.tjp-form input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.tjp-form .remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tjp-form .submit-button {
    background: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tjp-form .submit-button:hover {
    background: #0056b3;
}

.tjp-form .submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.tjp-form .links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.tjp-form .links a {
    color: #007bff;
    text-decoration: none;
}

.tjp-form .links a:hover {
    text-decoration: underline;
}

.tjp-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    display: none;
}

.tjp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tjp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tjp-form .loading {
    position: relative;
}

.tjp-form .loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Profile Wrapper */
.tjp-profile-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.tjp-profile-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    border-radius: 12px;
    color: #fff;
    margin-bottom: 2rem;
    overflow: hidden;
}

.tjp-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="100" height="100"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.tjp-profile-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.tjp-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.tjp-profile-avatar:hover img {
    border-color: rgba(255, 255, 255, 0.4);
}

.tjp-profile-avatar .edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(10px);
}

.tjp-profile-avatar:hover .edit-avatar {
    opacity: 1;
    transform: translateY(0);
}

.tjp-profile-name {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tjp-profile-role {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tjp-profile-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tjp-nav-item {
    padding: 0.75rem 1.5rem;
    color: var(--secondary-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tjp-nav-item:hover {
    color: var(--primary-color);
    background: rgba(34, 113, 177, 0.1);
}

.tjp-nav-item.active {
    color: var(--primary-color);
    background: rgba(34, 113, 177, 0.1);
}

.tjp-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.tjp-profile-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tjp-profile-section {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.tjp-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tjp-edit-button {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.tjp-edit-button:hover {
    background: rgba(34, 113, 177, 0.1);
}

.tjp-form-group {
    margin-bottom: 1.5rem;
}

.tjp-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.tjp-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
}

.tjp-form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
    outline: none;
}

.tjp-save-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.tjp-save-button:hover {
    background: var(--primary-hover);
}

.tjp-cancel-button {
    background: var(--light-color);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 1rem;
}

.tjp-cancel-button:hover {
    background: #e9ecef;
}

/* Image Upload Preview */
.tjp-image-preview {
    max-width: 200px;
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tjp-image-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Remove unwanted underlines */
.tjp-profile-wrapper a,
.tjp-profile-wrapper button {
    text-decoration: none !important;
}

/* Loading States */
.tjp-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

.tjp-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Notifications */
.tjp-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
}

.tjp-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.tjp-notification.success {
    background: var(--success-color);
    color: #fff;
}

.tjp-notification.error {
    background: var(--danger-color);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tjp-profile-wrapper {
        padding: 1rem;
    }

    .tjp-profile-nav {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .tjp-nav-item {
        white-space: nowrap;
    }
}

/* Icon Display Fixes */
.fas,
.far,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fas {
    font-weight: 900 !important;
}

.far {
    font-weight: 400 !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Icon Container Styles */
.tjp-nav-item i,
.tjp-stat-card i,
.tjp-activity-item i,
.tjp-suggestion-item i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 1.5em !important;
    height: 1.5em !important;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Stats Card Icons */
.tjp-stat-card i {
    font-size: 1.5rem !important;
    width: 2em !important;
    height: 2em !important;
    background: var(--light-color);
    border-radius: 12px;
    color: var(--primary-color);
}

/* Activity Icons */
.tjp-activity-item i {
    color: var(--primary-color);
    font-size: 1.2rem !important;
}

/* Suggestion Icons */
.tjp-suggestion-item i {
    color: var(--warning-color);
    font-size: 1.2rem !important;
}

/* Profile Icons */
.tjp-profile-header i {
    font-size: 1.2rem !important;
}

/* User Info */
.tjp-user-info {
    flex: 1;
}

.tjp-user-info h1 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tjp-user-role {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-color);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Stats Section */
.tjp-profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tjp-stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tjp-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tjp-stat-card i {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 12px;
    color: var(--primary-color);
    transition: var(--transition);
}

.tjp-stat-card:hover i {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.tjp-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tjp-stat-label {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Avatar Change Icon */
.tjp-change-avatar i {
    font-size: 1.2rem;
}

/* Subscription Badge Icon */
.tjp-subscription-badge i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Direct Icon SVG Definitions */
.fas.fa-user::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-briefcase::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-users::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='currentColor' d='M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-paper-plane::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-heart::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-eye::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='currentColor' d='M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-chart-line::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16zM464 96H345.94c-21.38 0-32.09 25.85-16.97 40.97l32.4 32.4L288 242.75l-73.37-73.37c-12.5-12.5-32.76-12.5-45.25 0l-68.69 68.69c-6.25 6.25-6.25 16.38 0 22.63l22.62 22.62c6.25 6.25 16.38 6.25 22.63 0L192 237.25l73.37 73.37c12.5 12.5 32.76 12.5 45.25 0l96-96 32.4 32.4c15.12 15.12 40.97 4.41 40.97-16.97V112c.01-8.84-7.15-16-15.99-16z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-crown::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='currentColor' d='M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.2 7.7-.6l74.9 136.2c1.4 2.6 4.1 4.2 7.1 4.2h322.6c3 0 5.7-1.6 7.1-4.2l74.9-136.2c2.5.4 5.1.6 7.7.6 26.5 0 48-21.5 48-48s-21.5-48-48-48z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-camera::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M512 144v288c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48h88l12.3-32.9c7-18.7 24.9-31.1 44.9-31.1h125.5c20 0 37.9 12.4 44.9 31.1L376 96h88c26.5 0 48 21.5 48 48zM376 288c0-66.2-53.8-120-120-120s-120 53.8-120 120 53.8 120 120 120 120-53.8 120-120zm-32 0c0 48.5-39.5 88-88 88s-88-39.5-88-88 39.5-88 88-88 88 39.5 88 88z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-file-alt::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-exclamation-circle::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-gauge-high::before,
.fas.fa-tachometer-alt::before,
.fas.fa-dashboard::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='currentColor' d='M288 32C128.94 32 0 160.94 0 320c0 52.8 14.25 102.26 39.06 144.8 5.61 9.62 16.3 15.2 27.44 15.2h443c11.14 0 21.83-5.58 27.44-15.2C561.75 422.26 576 372.8 576 320c0-159.06-128.94-288-288-288zm0 64c14.71 0 26.58 10.13 30.32 23.65-1.11 2.26-2.64 4.23-3.45 6.67l-9.22 27.67c-5.13 3.49-10.97 6.01-17.64 6.01-17.67 0-32-14.33-32-32S270.33 96 288 96zM96 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm48-160c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm246.77-72.41l-61.33 184C343.13 347.33 352 364.54 352 384c0 11.72-3.38 22.55-8.88 32H232.88c-5.5-9.45-8.88-20.28-8.88-32 0-33.94 26.5-61.43 59.9-63.59l61.34-184.01c4.17-12.56 17.73-19.45 30.36-15.17 12.57 4.19 19.35 17.79 15.17 30.36zm14.66 57.2l15.52-46.55c3.47-1.29 7.13-2.23 11.05-2.23 17.67 0 32 14.33 32 32s-14.33 32-32 32c-11.38-.01-20.89-6.28-26.57-15.22zM480 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

.fas.fa-gear::before,
.fas.fa-cog::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='currentColor' d='M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    width: 1em;
    height: 1em;
}

/* Update general styling for icons */
.tjp-stat-card i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    color: var(--primary-color) !important;
    background: var(--light-color);
    border-radius: 8px;
    margin-right: 1rem;
}

.tjp-nav-item i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px !important;
    height: 24px !important;
    margin-right: 0.5rem;
}

.tjp-profile-header i,
.tjp-avatar-overlay i,
.tjp-activity-item i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Profile Avatar with Progress Circle */
.tjp-avatar-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 1.5rem;
}

.tjp-avatar-container {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tjp-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tjp-avatar-container:hover .tjp-avatar {
    transform: scale(1.05);
}

.tjp-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.tjp-avatar-container:hover .tjp-avatar-overlay {
    opacity: 1;
}

.tjp-change-avatar {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tjp-change-avatar:hover {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Profile Progress Circle */
.tjp-profile-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #f0f0f0;
    z-index: 1;
}

.tjp-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    clip: rect(0, 170px, 170px, 85px);
}

.tjp-progress-circle-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0, 85px, 170px, 0);
    background: var(--primary-color);
    transform: rotate(var(--progress-rotation));
    transition: transform 1s ease, background 0.3s ease;
}

.tjp-progress-right {
    transform: rotate(180deg);
}

.tjp-progress-0-25 .tjp-progress-circle-fill {
    background: var(--danger-color);
}

.tjp-progress-26-50 .tjp-progress-circle-fill {
    background: var(--warning-color);
}

.tjp-progress-51-75 .tjp-progress-circle-fill {
    background: var(--info-color);
}

.tjp-progress-76-100 .tjp-progress-circle-fill {
    background: var(--success-color);
}

.tjp-completion-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    white-space: nowrap;
}

/* Tab Content Animation */
.tjp-tab-content {
    animation: fadeIn 0.5s ease;
    display: none;
}

.tjp-tab-content.active {
    display: block;
}

/* Loading animation for image upload */
.tjp-avatar-container.tjp-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    z-index: 3;
    border-radius: 50%;
}

.tjp-avatar-container.tjp-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 4;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages Tab Styles */
.tjp-profile-messages {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    min-height: 500px;
}

.tjp-messages-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    height: 600px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.tjp-conversation-list {
    border-right: 1px solid #eee;
    overflow-y: auto;
    height: 100%;
}

.tjp-conversation-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.tjp-conversation-item:hover {
    background-color: #f9f9f9;
}

.tjp-conversation-item.tjp-selected {
    background-color: #f0f7ff;
    border-left: 3px solid #0073aa;
}

.tjp-conversation-item.tjp-unread {
    background-color: #f0f7ff;
}

.tjp-conversation-header h3 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.tjp-employer {
    font-size: 13px;
    color: #666;
    display: block;
}

.tjp-message-time {
    font-size: 12px;
    color: #999;
    display: block;
    margin-top: 5px;
}

.tjp-unread-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0073aa;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.tjp-open-conversation {
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #999;
}

.tjp-message-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tjp-message-detail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    text-align: center;
    padding: 20px;
}

.tjp-message-detail-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.tjp-message-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tjp-message-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.tjp-back-to-list {
    display: none;
    background: none;
    border: none;
    padding: 5px 10px;
    margin-right: 15px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.tjp-message-header h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.tjp-message-employer-name {
    font-size: 13px;
    color: #666;
}

.tjp-messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tjp-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.tjp-message-sender {
    align-self: flex-end;
    background-color: #0073aa;
    color: white;
    border-bottom-right-radius: 4px;
}

.tjp-message-receiver {
    align-self: flex-start;
    background-color: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 4px;
}

.tjp-message-time-meta {
    font-size: 11px;
    margin-top: 5px;
    display: block;
    opacity: 0.7;
}

.tjp-message-form {
    display: flex;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.tjp-message-form textarea {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    resize: none;
    height: 40px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tjp-message-form textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

.tjp-send-message {
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tjp-send-message:hover {
    background-color: #005d8c;
}

.tjp-send-message:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.tjp-loading-messages {
    display: flex;
    justify-content: center;
    padding: 20px;
    color: #999;
}

.tjp-no-messages .tjp-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.tjp-no-messages .tjp-empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.tjp-no-messages .tjp-empty-state h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive styles for messages */
@media (max-width: 768px) {
    .tjp-messages-container {
        grid-template-columns: 1fr;
    }
    
    .tjp-conversation-list {
        border-right: none;
    }
    
    .tjp-message-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 10;
    }
    
    .tjp-back-to-list {
        display: block;
    }
}

/* Message Badge for unread messages */
.tjp-nav-item .tjp-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Override Font Awesome styles to ensure they load correctly */
i.fas, i.far, i.fab, i.fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    display: inline-block;
}

i.far {
    font-weight: 400 !important;
}

i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

/* Ensure specific icons render correctly */
.fa-comments:before {
    content: "\f086";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.fas.fa-comments:before {
    content: "\f086";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* For the navigation items specifically */
.tjp-nav-item .fas.fa-comments:before {
    content: "\f086";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.fa-gauge-high:before {
    content: "\f625";
}

.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-heart:before {
    content: "\f004";
}

.fa-user:before {
    content: "\f007";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-users:before {
    content: "\f0c0";
}

.fa-crown:before {
    content: "\f521";
}

.fa-gear:before {
    content: "\f013";
}

/* Candidate Profile Modal Styles */
.tjp-candidate-profile {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tjp-profile-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tjp-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    background-color: #f0f0f0;
}

.tjp-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tjp-profile-info {
    flex: 1;
    min-width: 250px;
}

.tjp-profile-info h2 {
    margin: 0 0 5px;
    font-size: 28px;
    color: #333;
}

.tjp-profile-meta {
    margin-bottom: 15px;
}

.tjp-profile-location, 
.tjp-profile-experience {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

.tjp-profile-location i,
.tjp-profile-experience i {
    width: 20px;
    margin-right: 8px;
    color: #777;
}

.tjp-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tjp-profile-action-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: all 0.2s ease;
}

.tjp-profile-action-btn i {
    margin-right: 8px;
}

.tjp-resume-btn {
    background-color: #4caf50;
    color: white;
}

.tjp-resume-btn:hover {
    background-color: #3d8b40;
    color: white;
}

.tjp-contact-btn {
    background-color: #2271b1;
    color: white;
}

.tjp-contact-btn:hover {
    background-color: #135e96;
    color: white;
}

/* Profile sections */
.tjp-profile-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tjp-profile-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tjp-profile-section h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.tjp-profile-section h3 i {
    margin-right: 10px;
    color: #2271b1;
}

.tjp-profile-bio {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Skills */
.tjp-profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tjp-profile-skill {
    background-color: #f0f7ff;
    color: #0073aa;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    transition: transform 0.2s;
}

.tjp-profile-skill:hover {
    transform: translateY(-2px);
}

/* Education */
.tjp-education-item {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.tjp-education-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2271b1;
}

.tjp-education-item:last-child {
    margin-bottom: 0;
}

.tjp-education-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 5px;
    color: #333;
}

.tjp-education-institution {
    font-size: 14px;
    color: #555;
    margin: 0 0 5px;
}

.tjp-education-date {
    font-size: 13px;
    color: #777;
}

/* Applications */
.tjp-applications-list {
    margin-top: 15px;
}

.tjp-application-item {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.tjp-application-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.tjp-application-item:last-child {
    margin-bottom: 0;
}

.tjp-application-job {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.tjp-application-company {
    color: #555;
    margin: 0 0 8px;
    font-size: 14px;
}

.tjp-application-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #777;
}

.tjp-application-date {
    display: flex;
    align-items: center;
}

.tjp-application-date i {
    margin-right: 5px;
}

.tjp-application-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tjp-status-pending {
    background-color: #fff8e6;
    color: #c7a631;
}

.tjp-status-reviewing {
    background-color: #e6f6ff;
    color: #307aac;
}

.tjp-status-interview {
    background-color: #e9f4fd;
    color: #2271b1;
}

.tjp-status-accepted {
    background-color: #e7f6e9;
    color: #2e7735;
}

.tjp-status-rejected {
    background-color: #fdeeee;
    color: #c73131;
}

/* Empty state */
.tjp-profile-empty {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    color: #666;
}

.tjp-profile-empty i {
    font-size: 36px;
    color: #ccc;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tjp-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .tjp-profile-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .tjp-profile-actions {
        justify-content: center;
    }
}

/* Job Form Styles */
.tjp-form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--tjp-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.tjp-profile-section-title {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tjp-profile-section-title h2 {
    color: var(--tjp-primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.tjp-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tjp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tjp-form-group label {
    font-weight: 500;
    color: #333;
}

.tjp-form-group label .required {
    color: #e53935;
}

.tjp-form-group input[type="text"],
.tjp-form-group input[type="date"],
.tjp-form-group select,
.tjp-form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tjp-form-group input[type="text"]:focus,
.tjp-form-group input[type="date"]:focus,
.tjp-form-group select:focus,
.tjp-form-group textarea:focus {
    border-color: var(--tjp-primary-color);
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
    outline: none;
}

.tjp-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.tjp-form-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.tjp-form-response {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.tjp-form-response.tjp-success {
    background-color: #e8f5e9;
    border-left: 4px solid #43a047;
    color: #2e7d32;
}

.tjp-form-response.tjp-error {
    background-color: #ffebee;
    border-left: 4px solid #e53935;
    color: #c62828;
}

.tjp-form-response p {
    margin: 0;
    line-height: 1.5;
}

.tjp-form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.tjp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    min-width: 120px;
}

.tjp-button-primary {
    background-color: var(--tjp-primary-color);
    color: white;
}

.tjp-button-primary:hover {
    background-color: var(--tjp-primary-dark);
}

.tjp-button .button-loader {
    margin-left: 8px;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
} 

/* Admin Paused Job Notice */
.tjp-admin-paused-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 13px;
    border-left: 3px solid #dc3545;
}

/* Disabled button style */
.tjp-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
    color: #6c757d !important;
}

.tjp-btn-disabled:hover {
    background-color: #e9ecef !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

/* Admin action alert */
.tjp-admin-action-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fdf2e9;
    border-left: 4px solid #fd7e14;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tjp-admin-action-alert i {
    font-size: 24px;
    color: #fd7e14;
    margin-top: 2px;
}

.tjp-admin-action-alert a {
    color: #fd7e14;
    text-decoration: underline;
    font-weight: 600;
}

.tjp-admin-action-alert a:hover {
    color: #e67e22;
}

/* Admin Paused Job Notice */
.tjp-admin-paused-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 13px;
    border-left: 3px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tjp-admin-paused-notice i {
    color: #dc3545;
}

/* Disabled button style */
.tjp-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    background-color: #e9ecef !important;
    border-color: #dee2e6 !important;
    color: #6c757d !important;
}

.tjp-btn-disabled:hover {
    background-color: #e9ecef !important;
    color: #6c757d !important;
    border-color: #dee2e6 !important;
}

/* Admin paused row highlight */
.tjp-admin-paused-row {
    background-color: #fff5f5;
}

.tjp-highlight-row {
    background-color: #fff3cd !important;
    transition: background-color 0.5s ease;
}

.tjp-highlight-row td {
    animation: pulse-background 1s ease;
}

@keyframes pulse-background {
    0% { background-color: #fff3cd; }
    50% { background-color: #ffeeba; }
    100% { background-color: #fff3cd; }
}

/* Admin action alert */
.tjp-admin-action-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fdf2e9;
    border-left: 4px solid #fd7e14;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tjp-admin-action-alert i {
    font-size: 24px;
    color: #fd7e14;
    margin-top: 2px;
}

.tjp-admin-action-alert a {
    color: #fd7e14;
    text-decoration: underline;
    font-weight: 600;
}

.tjp-admin-action-alert a:hover {
    color: #e67e22;
}