@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Lato", serif;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border: 2px solid #dfdfdf;
    border-radius: 20px;
    background-color: transparent;
    cursor: pointer;
}


.user-box img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

 /* Overlay (Blackout effect) */
 .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Popup Box */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 320px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Show Popup Animation */
.popup.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: white;
}

.overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

/* Gradient Logout Heading */
.popup h1 {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(to bottom, #7C4AF9 0%, #572DBE 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Logout Tagline */
.popup p {
    font-size: 14px;
    color: #A3A3A3;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Button Container */
.popup .btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Logout Button (Same as "Connect Now") */
.logout-btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to bottom, #7C4AF9 0%, #572DBE 100%);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(124, 74, 249, 0.3);
    transition: all 0.3s ease-in-out;
}

.logout-btn:hover {
    box-shadow: 0px 6px 12px rgba(87, 45, 190, 0.5);
    transform: translateY(-2px);
}

/* Cancel Button */
.cancel-btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #494949;
    background: linear-gradient(to bottom, #ffffff 0%, #F3F3F3 100%);
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.cancel-btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.table-container {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.table-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: "Raleway", serif;
    color: #494949;
    padding-left: 40px;
}

.table thead th {
    color: #B4B4B4;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding-left: 50px;
}

.table-border {
    border-bottom: 1px solid #EAEAEA;
    margin-bottom: 10px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}
.star {
    color: #FFC107; /* Yellow for the star */
    font-size: 1rem;
}

.icon-dashboard {
    font-size: 0.9rem;
    color: #7C4AF9;
}

.amount {
    font-weight: 600;
}



.table th, .table td {
    font-family: "Lato", serif;
    color: #494949;
    font-weight: bold;
    padding-left: 50px;
    line-height: 40px;
    vertical-align: middle;
    border: none;
    border-top:1px solid  #EAEAEA;
}

.table th{
    border: none;
}

.p-title{
    max-width: 350px;
    color: #7C4AF9 !important;
}

.accordion{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-body h6{
    color: #A3AAB8 ;
}

.accordion-item{
    border: none;
}


.accordion-header {
    background-color: #FCFCFC;
}

.accordion-button {
    background-color: #ffffff !important;
    font-family: "Raleway", serif;
    font-weight: bold;
    color: #494949;
}

.accordion-button:not(.collapsed){
    color: #494949 ;
}

.accordion-button:not(.collapsed)::after {
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    -webkit-mask: url("../assets/accordianIcon.svg") no-repeat center;
    mask: url("../assets/accordianIcon.svg") no-repeat center;
    transform: rotate(0deg);
}

.accordion-button::after {
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    -webkit-mask: url("../assets/accordianIcon.svg") no-repeat center;
    mask: url("../assets/accordianIcon.svg") no-repeat center;
    transform: rotate(180deg);
}

.on-btn,
.off-btn {
    border: none;
    padding: 8px 20px;
    border-radius: 8px; /* Reduced roundness */
    cursor: pointer;
    font-size: 14px;
    font-family: "Lato", serif;
    font-weight: bold;
}


.on-btn {
    background: #B4B4B4;
    color: white;
}

.off-btn {
    background: #B4B4B4;
    color: white;
}
.active{
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
    color: white;
}


.custom-input,
.custom-textarea {
    background: #F8F8F8;
    border: none;
    border-radius: 8px;
    padding: 20px;
}

.link-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.remove-link{
    color: gray;
    border: none;
}

.link{
    color: #A3AAB8;
    font-family: "Lato", serif;
    font-size: 14px;
    max-width: 350px;
}


.save-btn {
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 10px 40px;
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
}

.save-btn:hover{
    background: white;
    color: #572DBE;
    border: 1px solid #572DBE;
}

.question-icon {
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
    color: #494949;
}

.tooltip-box {
    position: absolute;
    background: rgb(173, 173, 173);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    display: none;
    margin-top: 0;
    z-index: 4;
}

.tooltip-box h6 {
    font-weight: bold;
}

.btn-section {
    gap: 15px; /* Reduce space between sections */
    color: #A3AAB8;
    /* flex-direction: row; */
    flex-wrap: wrap;
}

/* Toggle Item */
.toggle-item {
    text-align: left;
}

.toggle-item h6 {
    margin-bottom: 10px;
    font-family: "Lato", serif;
    font-size: 14px;
    font-weight: bold;
    color: #6B3DDE;
}

.skills-grid {
    display: grid;
    width: 80%;
    margin: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Toggle Styles */
.toggle-container {
    width: 80px;
    height: 40px;
    background: #ECECEC;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    font-family: "Lato", serif;
    font-size: 12px;
    font-weight: bold;
    color: #555;
}

.toggle-switch {
    width: 30px;
    height: 30px;
    font-weight: bolder;
    background: #fff;
    box-shadow: 0 4px 8px rgba(117, 117, 117, 0.5);
    color: #7C4AF9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.toggle-container.toggle-active .toggle-switch {
    left: calc(100% - 40px);
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
    color: #fff;
}

/* Initial Position */
.toggle-switch {
    left: 5px;
}

.pricing-row{
    width: 600px;
    margin: auto;
}

.btn-group{
    width: 100%;
}


.btn-group form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Pricing Buttons */
.pricing-btn {
    padding: 8px 0px;
    width: 150px;
    background-color: #F8F8F8;
    border: none;
    border-radius: 5px;
    color: #B4B4B4;
    font-family: "Lato", serif;
    font-size: 12px;
    font-weight:900;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-transform: uppercase;
}


.pricing-btn:hover {
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    color: #fff;
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
}

.pricing-btn.selected {
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    color: #fff;
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
}

.input-group-text {
    background: #7C4AF9;
    color: white;
    border: none;
    font-size: 16px;
}

.bidding-box {
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bidding-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.bidding-left-column {
    width: 70%;
    padding: 50px;
}


.bidding-heading {
    font-family: 'Raleway', serif;
    font-weight: 800;
    font-size: 24px;
    color: #494949;
    margin-bottom: 15px;
}

.bidding-paragraph {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #B4B4B4;
    margin-bottom: 20px;
    line-height: 1.5;
}

.start-bid-btn {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(to bottom, #7C4AF9, #572DBE);
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
    color: white;
    border-radius: 5px;
    padding: 15px 50px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.start-bid-btn:hover{
    background: white;
    color: #7C4AF9;
    border: 2px solid #7C4AF9;
    box-shadow: 0 4px 8px rgba(55, 0, 117, 0.5);
}

.bidding-note {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #B4B4B4;
}

.bidding-right-column {
    width: 600px;
    background: url('../assets/bg.png'), linear-gradient(to bottom, #7C4AF9, #572DBE);
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 0px 15px 15px 0px;
}

.bidding-stat {
    width: 80%;
    margin: 20px 0px 20px 10%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.bidding-stat p{
    margin: 0;
}

.bidding-circle {
    background-color: #3A2480;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-right: 15px;
}

.bidding-number {
    color: white;
    font-family: 'Raleway', serif;
    font-weight: 800;
    font-size: 28px;
}

.bidding-text {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: white;
}

.review-img{
    width: 20px;
    height: 20px !important;
}

.pagination {
    margin-top: 30px;
    display: flex;
    gap: 8px;
}

.pagination-arrow img {
    width: 18px; /* Adjust size of arrow icons */
    height: 18px;
    cursor: pointer;
}

.pagination-number {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #D9D9D9;
    padding: 7px 12px;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    color: #FFFFFF;
    background: #7C4AF9;
}

.pagination-number.selected {
    background: #7C4AF9;
    color: #FFFFFF;
    font-weight: bold;
}

.login-form{
    width: 600px;
}

@media screen and (max-width: 1000px){
    .bidding-content{
        flex-direction: column;
    }

    .bidding-left-column{
        width: 100%;
    }

    .bidding-right-column{
        width: 100%;
        border-radius: 0px 0px 15px 15px;
    }
}


@media screen and (max-width: 615px){

    .px-5, .p-5{
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .me-4{
        margin-right: 0 !important;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bidding-right-column{
        padding: 20px;
    }

    .bidding-circle{
        width: 50px;
        height: 50px;
    }

    .bidding-number{
        font-size: 20px;
    }

    .bidding-stat{
        width: 95%;
        margin: 10px auto;
    }

    .bidding-text{
        font-size: 14px;
    }

    .btn-group {
        flex-direction: column;
        width: 180px !important;
        margin: 0px auto 20px auto;
    }

    .pricing-btn{
        margin-bottom: 20px;
    }

    .pricing-row{
        width: 180px;
        margin: auto;
    }

    .accordion-button{
        font-size: 0.8rem;
    }

    .login-form{
        width: 400px;
    }
}

@media screen and (max-width: 415px){
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-group {
        flex-direction: column;
        width: 180px !important;
        margin: 0px auto 20px auto;
    }

    .pricing-btn{
        margin-bottom: 20px;
    }

    .pricing-row{
        width: 180px;
        margin: auto;
    }

    .p-title{
        max-width: 280PX;
    }

    .start-bid-btn{
        font-size: 14px;
        padding: 15px 30px;
    }

    .login-form{
        width: 300px;
    }
}