 /* General body styling */
 body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa; /* Light background for better readability */
    margin: 0;
    padding: 0;
}

/* Form container styling */
form {
    width: 100%; /* Full width for mobile and smaller screens */
    max-width: 600px;
    margin: 20px auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow for a subtle depth effect */
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

/* Form label styling */
form label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #333; /* Darker text color for readability */
}

/* Form input fields */
form input[type="text"] {
    width: calc(100% - 24px); /* Full width minus some padding */
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa; /* Light background for input field */
    transition: border-color 0.3s ease-in-out;
}

form input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Button styling */
form button {
    width: 100%; /* Full width for mobile and smaller screens */
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #0056b3;
}
h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    margin-left: 550px;
}

/* Ticket details section */
h3{
    color: #007bff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.ticket-detail {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow for details section */
    padding: 20px;
    margin-bottom: 20px;
}

.ticket-detail p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

/* Status message */
.ticket-status {
    font-size: 16px;
    color: #28a745; /* Green status text */
}

/* Responsive design for larger screens */
@media (min-width: 768px) {
    form {
        max-width: 600px;
    }
    
    .ticket-detail {
        max-width: 600px;
        margin: 0 auto;
    }
}
