/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #E3FDFD, #FFE6E6);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #6DBE45;
    margin-bottom: 10px;
}

h2 {
    color: #5AA9E6;
    margin-top: 40px;
}

p {
    color: #555;
}

input[type="text"], input[type="email"], input[type="password"], textarea, select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 1rem;
}

textarea {
    resize: none;
}

.btn {
    background-color: #5AA9E6;
    color: white;
    padding: 12px 25px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #448ed8;
    box-shadow: 0 0 10px rgba(90, 169, 230, 0.7);
}

.btn-logout {
    background-color: #f44336;
    padding: 12px 25px;
    margin-top: 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-logout:hover {
    background-color: #d32f2f;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.6);
}

/* Card Styles for Posts */
.card {
    background: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .btn, .btn-logout {
        width: 100%;
        font-size: 1.1rem;
    }
}
.dashboard-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.dashboard-buttons .btn {
    width: 200px;
    text-align: center;
}


.btn-logout {
    display: inline-block;
    padding: 10px 20px;
    background: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-logout:hover {
    background: #d32f2f;
}