/* တစ်ကိုယ်လုံးစာ အပြင်အဆင် */
body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navbar - အပေါ်ဆုံးက နာမည်တန်း */
.navbar {
    background-color: #1a73e8; /* အပြာရောင်ရင့်ရင့် */
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

/* ကတ်ပြားများ စုစည်းရာနေရာ */
.vpn-container {
    margin-top: 80px; /* Navbar အောက် ရောက်စေရန် */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

/* VPN ကတ်ပြားပုံစံ */
.vpn-card {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.vpn-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flag {
    width: 45px;
    height: auto;
    border-radius: 5px;
}

.vpn-name {
    font-size: 18px;
    color: #1a73e8;
    margin: 0;
}

/* Copy Link Button */
.btn-copy {
    width: 100%;
    padding: 12px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin: 15px 0;
    font-size: 14px;
    transition: 0.3s;
}

.btn-copy:hover {
    background-color: #1557b0;
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.ping {
    color: #2ea44f;
    font-weight: bold;
}
