/* Currency */ .currency-card{background:#fff;padding:30px;border-radius:16px;box-shadow:0 8px 25px rgba(0,0,0,0.1);margin-bottom:50px;text-align:center;} .currency-card h2{margin-bottom:15px;} .currency-selects{display:flex;justify-content:center;gap:20px;margin-top:15px;} .currency-selects div{display:flex;align-items:center;gap:8px;} .currency-selects select{padding:6px 10px;border-radius:6px;border:1px solid #ccc;} .calculator{margin-top:20px;display:flex;justify-content:center;align-items:center;gap:15px;} .calculator input{width:140px;padding:10px;border-radius:8px;border:1px solid #ddd;text-align:center;} #rate-info{margin-top:10px;font-weight:600;} 
/* Traffic Cameras */ .traffic-title{text-align:center;margin-bottom:20px;font-weight:600;} #camera-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;} .traffic-box{background:#fff;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.08);overflow:hidden;} .traffic-box img{width:100%;display:block;} .traffic-info{padding:10px;text-align:center;font-size:14px;} 
/* Bus arrivals */ .bus-search{display:flex;justify-content:center;gap:10px;margin-bottom:10px;} .bus-search input{padding:8px;border-radius:6px;border:1px solid #ccc;} .bus-search button{padding:8px 12px;border:none;background:#007bff;color:#fff;border-radius:6px;cursor:pointer;} #bus-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:15px;margin-top:20px;} .bus-box{background:#fff;border-radius:12px;padding:10px;box-shadow:0 6px 18px rgba(0,0,0,0.08);display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center;} .bus-box .fav-btn{padding:4px 10px;border:none;border-radius:6px;cursor:pointer;background:#007bff;color:#fff;font-size:14px;} 
.my2sg-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
    font-family: Arial, sans-serif;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><text x="50%" y="50%" text-anchor="middle" fill="rgba(200,200,200,0.15)" font-size="36" font-family="Arial" dy=".35em">MY2SGTravel.com</text></svg>') no-repeat center center;
    background-size: 60%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Powered by label */
.my2sg-powered {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
}

/* ------------------ */
/* MY2SG Checkpoint Weather CSS */
/* ------------------ */
.my2sg-weather-home {
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
    font-family: Arial, sans-serif;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.my2sg-weather-home h2 { text-align:center; margin-bottom:20px; }

/* Tabs */
.my2sg-weather-tabs {
    display:flex;
    justify-content:center;
    gap:5px;
    margin-bottom:15px;
    flex-wrap:wrap;
}

.my2sg-weather-tab {
    flex:1;
    padding:8px 0;
    cursor:pointer;
    font-weight:600;
    text-align:center;
    background:#f3f4f6;
    border-radius:6px;
    transition:0.3s;
}

.my2sg-weather-tab.active { background:#2563eb; color:#fff; }

/* Box */
.my2sg-weather-box { display:none; }
.my2sg-weather-box.active { display:block; }

.my2sg-weather-box iframe {
    width:100%;
    height:250px;
    border:0;
    border-radius:8px;
}