/* General Body Styling */
body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
    
}

/* Main Container */
.container {
    background-color: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
    border-top: 5px solid #007bff;
}

/* Header Styling */
h1, h2 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

p.tagline {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Button Styling */
.btn {
    display: inline-block;
    width: 70%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #6c757d, #5a6268);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
}
.btn-secondary:hover {
     box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}


/* Ticket Styling */
.ticket-container {
    border: 2px dashed #007bff;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.ticket-header img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.ticket-body img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.user-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.user-details strong {
    color: #0056b3;
}

/* Alert/Message Boxes */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    border: 1px solid transparent;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Admin Table */
.admin-container {
    max-width: 95%;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}
th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}
th {
    background-color: #007bff;
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:hover {
    background-color: #ddd;
}
.admin-actions a {
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
}
.admin-actions a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 1.5rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.3rem;
    }
}
