/* Center the form on the page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

/* Form container */
.form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Form title */
.form-container h2 {
    margin-bottom: 20px;
    color: #333333;
}

/* Error message */
.error {
    color: #ff0000;
    margin-bottom: 10px;
}

/* Form labels and inputs */
.form-container label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #555555;
}

.form-container input[type="text"],
.form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

/* Submit button */
.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #45a049;
}

/* Link styling */
.form-container p {
    margin-top: 15px;
    color: #333333;
}

.form-container a {
    color: #4CAF50;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}







.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Button Styling */
.download-button,
.copy-link-button,
.delete-button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin: 5px;
    color: white;
    border: none;
}

.download-button {
    background-color: #4CAF50; /* Green */
}

.copy-link-button {
    background-color: #2196F3; /* Blue */
}

.delete-button {
    background-color: #f44336; /* Red */
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px;
    }
    
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    th {
        display: none; /* Hide table headers on small screens */
    }

    td {
        position: relative;
        padding-left: 50%;
    }

    td::before {
        position: absolute;
        top: 10px;
        left: 10px;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: bold;
    }
}











.upload-container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #4a90e2;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #4a4a4a;
}

input[type="text"],input[type="email"],
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus {
    border-color: #4a90e2;
    outline: none;
}

button {
    background-color: #4a90e2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: #357ab8;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
}

.success {
    color: green;
    font-weight: bold;
    text-align: center;
}

/* Countdown Timer */
#countdown {
    text-align: center;
    font-size: 1.2em;
    margin: 15px 0;
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 600px) {
    .upload-container {
        padding: 20px;
    }

    h2 {
        font-size: 1.5em;
    }

    button {
        font-size: 14px;
    }
}




.profile-link {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.profile-link:hover {
    background-color: #45a049;
}


