.ads-posted .draft-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ads-posted .draft-img {
    width: 60px;
    height: 60px;
    background-color: #f2f2f2;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .ads-posted .draft-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
    }

    .ads-posted .draft-icon {
        align-self: flex-end;
    }
}

.ads-posted .icon-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.ads-posted .icon-box i {
    font-size: 36px;
    color: var(--bs-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.ads-posted .icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.ads-posted .icon-box:hover i {
    color: var(--bs-secondary);
}

.ads-posted .icon-box:hover p {
    color: var(--bs-primary) !important;
}

.ads-posted .icon-box p {
    font-weight: 500;
}

@media (max-width: 576px) {
    .ads-posted .icon-box {
        padding: 20px 10px;
        width: 100px !important;
    }

    .ads-posted .icon-box i {
        font-size: 28px;
    }
}

.ads-posted .ads-posted-top {
    z-index: 1030;
    height: 70px;
}

.ads-posted {
    padding: 0 15px !important;
}

@media (min-width: 576px) {
    .ads-posted {
        padding: 0 100px !important;
    }
}

@media (min-width: 768px) {
    .ads-posted {
        padding: 0 150px !important;
    }
}

@media (min-width: 992px) {
    .ads-posted {
        padding: 0 200px !important;
    }
}

@media (min-width: 1200px) {
    .ads-posted {
        padding: 0 300px !important;
    }
}

@media (min-width: 1400px) {
    .ads-posted {
        padding: 0 480px !important;
    }
}

.card-help {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    background: var(--bs-white);
}

.card-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: rgb(255, 238, 238);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bs-primary);
    flex-shrink: 0;
}
