﻿.card-box {
    border-radius: 14px;
    color: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden
}

    .card-box h3 {
        font-weight: 700;
        color:#fff !important;
    }

.gradient-orange {
    background: linear-gradient(45deg,#ff7a18,#ffb347);
}

.gradient-blue {
    background: linear-gradient(45deg,#396afc,#2948ff);
}

.gradient-green {
    background: linear-gradient(45deg,#11998e,#38ef7d);
}

.gradient-purple {
    background: linear-gradient(45deg,#6a11cb,#8e54e9);
}

.btn-custom {
    border-radius: 10px;
    padding: 10px 20px;
    color: #fff;
    border: none;
    font-weight: 500
}

.btn-purple {
    background: #6e1f77
}

.btn-orange {
    background: #f7941d
}

.btn-blue {
    background: #007aff
}

.section-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05)
}

.badge-active {
    background: #28a745
}

.badge-expired {
    background: #dc3545
}

.badge-draft {
    background: #6c757d
}

.applicant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px
}

    .applicant img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-right: 10px
    }

.message {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

    .message img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px
    }

.profile-box {
    text-align: center
}

@media(max-width:768px) {
    .card-box {
        margin-bottom: 15px
    }
}


.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap; /* ✅ important */
    gap: 10px;
}

    .top-bar input, .top-bar select {
        width: 100%;
        max-width: 200px;
        padding: 6px;
        border-radius: 6px;
        border: 1px solid #ccc;
        margin-right: 8px;
    }

.bulk-actions button {
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    margin-right: 5px;
    cursor: pointer;
    color: #fff;
}

.bulk-shortlist {
    background: #f7941d;
}

.bulk-reject {
    background: red;
}

.table-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    overflow-x: auto; /* ✅ important */
}
table {
    width: 100%;
    
    border-collapse: collapse;
}

th, td {
    padding: 9px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #fff;
    color: #333;
}

tr:hover {
    background: #f9f9f9;
}

.status-select {
    padding: 4px;
    border-radius: 6px;
}
.actions{
    display:flex;
}
.actions button {
    border: none;
    padding: 6px 10px;
    margin-right: 5px;
    border-radius: 6px;
    cursor: pointer;
    color: #333;
    font-size: 12px;
}



input[type="checkbox"] {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    th, td {
        padding: 8px;
        font-size: 12px;
    }

    .actions button {
        padding: 5px 6px;
        font-size: 11px;
    }
}
.resume-view {
    

    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    margin-right: 5px;
}
.view{
    color:#fff!important;
}
.reject{
    color:#fff !important;
}
.download{
    color:#fff !important;
}
