
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #1e1e2f;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}


header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00ffff; 
    text-transform: uppercase;
    letter-spacing: 2px;
}


.search-box {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 10px
}

input {
    padding: 15px 25px;
    width: 60%;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00ffff;
}

button {
    border-radius: 30px;
    padding: 15px 30px;
    border:none; 
    cursor: pointer;
    background: #00ffff;
    color: black;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.05);
    background: #00cccc;
}

#Temp img {
    vertical-align: middle; 
    width: 100px; 
}


.dashboard {
    display: flex;
    padding: 10px;
    gap: 20px; 
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border: 2px solid cyan; 
    border-radius: 7px;

}


.card {
    background: rgba(0, 0, 0, 0.3); 
    backdrop-filter: blur(10px);    
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    border-color: #00ffff;
    border: 2px solid cyan; 
    border-radius: 7px;
}

.card h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.1rem;
    text-transform: uppercase;
}


.big-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.details p {
    margin: 8px 0;
    font-size: 1rem;
    color: #e0e0e0;
}

@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
    }
    input {
        width: 100%;
    }
    button {
        width: 100%;
    }
}
