 
:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-main: #ffffff;
    --text-dim: #888888;
    --accent-green: #2ecc71;
    --status-bg-active: rgba(46, 204, 113, 0.2);
    --status-bg-paused: rgba(136, 136, 136, 0.2);
}

.esim-container {
    background-color: var(--bg-color);
    padding: 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    max-width: 450px;
    color: var(--text-main);
}

.esim-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.esim-card {
    padding: 16px;
    margin-bottom: 15px;
	
	
     background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;     
    border-color: rgb(46 46 51 / var(--tw-border-opacity, 1));
}

.esim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.esim-info {
    display: flex;
    gap: 12px;
}

.flag {
    font-size: 24px;
}

.plan-name {
    font-weight: 600;
    font-size: 16px;
}

.country-name {
    color: var(--text-dim);
    font-size: 13px;
}

.status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.status.active {
    color: var(--accent-green);
    background: var(--status-bg-active);
}

.status.active::before {
    content: "● ";
}

.status.paused {
    color: var(--text-dim);
    background: var(--status-bg-paused);
}

.status.paused::before {
    content: "● ";
}

/* Progress Bar Style */
.progress-container {
    background-color: #333;
    height: 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--accent-green);
    height: 100%;
    border-radius: 10px;
}

.esim-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 13px;
}
 

