@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.container {
    position: relative;
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(135deg, #5563c1, #6a4391);
}

a {
    display: block;
    margin-top: 10px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.dashboard-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.activity-log {    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.activity-log h3 {
    color: #333;
    font-size: 18px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: #444;
}

.website-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.website-card button {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

table {    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background: #667eea;
    color: white;
}

.backup-restore {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.backup-btn, .restore-btn {
    margin-top: 10px;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.create-btn {
    background: #28a745;
    padding: 12px;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.upload-btn {
    margin-top: 20px;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.create-btn {
    background: #28a745;
}

.manage-btn {
    background: #ffc107;
}

.delete-btn {
    background: #dc3545;
}

.website-card button:hover {
    opacity: 0.8;
}

.links {
    margin-top: 20px;
}

.links a {
    display: block;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    margin-top: 5px;
}

.links a:hover {
    text-decoration: underline;
}