#slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
}

#slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 25px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding: 0 10px;
}

.id-card {
    flex: 0 0 calc(20% - 16px);
    min-width: calc(20% - 16px);
    margin: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: flex;
    flex-direction: column;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.id-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.id-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.id-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.id-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.id-card:hover .id-card-image img {
    transform: none;
}

.id-card-title {
    padding: 20px;
    text-align: center;
    background: white;
    position: relative;
}

.id-card-title h5 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.id-card:hover .id-card-title h5 {
    color: #ff6b00;
}

.id-card * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.id-slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.id-slider-button:hover {
    background: rgba(255, 255, 255, 0.95);
}

.id-prev {
    left: 10px;
}

.id-next {
    right: 10px;
}

@media (max-width: 992px) {
    .id-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .id-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .id-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    #slider {
        cursor: grab;
        padding: 0 5px;
    }
    #slider-wrapper {
        padding: 0 5px;
    }
} 