.skeleton-loading {
    position: relative;
    background-color: #e2e5e7;
    overflow: hidden;
}

.skeleton-loading::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.simcard-skeleton {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.simcard-skeleton-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.simcard-skeleton-cell {
    height: 20px;
    border-radius: 4px;
}

.skeleton-number {
    width: 150px;
}

.skeleton-details {
    width: 200px;
}

.skeleton-price {
    width: 100px;
}

.skeleton-buttons {
    width: 150px;
}



.skeleton-box {
    background: #f0f0f0;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

.skeleton-img {
    height: 120px;
    background: #ddd;
    border-radius: 8px;
}

.skeleton-text {
    height: 14px;
    background: #ccc;
    border-radius: 5px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.long {
    width: 90%;
}

.skeleton-button {
    height: 30px;
    width: 100%;
    background: #bbb;
    border-radius: 5px;
}

@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}