body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    margin: 0;
}

/* Header */
.header {
    background: #000;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
}

.header h1 {
    margin: 0;
    font-size: 20px;
}

/* Navigation */
.nav {
    margin-top: 10px;
}

.nav a {
    color: #ccc;
    margin-right: 15px;
    text-decoration: none;
}

.nav a:hover {
    color: #fff;
}

/* Page title */
.page-title {
    padding: 20px;
    font-size: 22px;
}

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 20px;
}

/* Card */
.card {
    background: #1c1c1c;
    /* padding: 15px; */
    border-radius: 10px;
    text-align: center;
    transition: 0.2s;
}

.card:hover {
    background: #2a2a2a;
    transform: scale(1.05);
}

.card img {
    max-width: 100%;
    margin-bottom: 10px;
}

.card-title {
    font-size: 14px;
}

.card-sub {
    font-size: 11px;
    color: #aaa;
}

a {
    text-decoration: none;
    color: #fff;
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #ccc;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1c1c1c;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-radius: 6px;
    z-index: 1000;
}

.dropdown-content a {
    color: #ccc;
    padding: 10px;
    display: block;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-content a:hover {
    background: #2a2a2a;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.card {

    color: white!important;

}


body{

      font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;


}




body{
    color: white!important;
}


.text-muted{
 color: white!important;

}