
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }
        .container {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 400px;
            width: 100%;
        }
        .title {
            font-size: 24px;
            margin-bottom: 10px;
            color: #333;
        }
        .info {
            font-size: 16px;
            margin-bottom: 20px;
            color: #555;
        }
      /* General button styling */
.button, .button1, .button2, .button3, .button4, .button5, .button6 {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin: 5px;
    transition: background-color 0.3s ease;
}

/* Primary button */
.button {
    background-color: #007bff;
}
.button:hover {
    background-color: #0056b3;
}

/* Secondary button */
.button1 {
    background-color: #28a745;
}
.button1:hover {
    background-color: #218838;
}

/* Danger button */
.button2 {
    background-color: #dc3545;
}
.button2:hover {
    background-color: #c82333;
}

/* Warning button */
.button3 {
    background-color: #ffc107;
    color: #333;
}
.button3:hover {
    background-color: #e0a800;
}

/* Info button */
.button4 {
    background-color: #17a2b8;
}
.button4:hover {
    background-color: #138496;
}

/* Success button */
.button5 {
    background-color: #28a745; /* Same as button1 for consistency */
    color: #fff; /* Ensuring text is white */
}
.button5:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Link button */
.button6 {
    background-color: transparent;
    color: #007bff; /* Blue text */
    border: 2px solid #007bff; /* Blue border */
}
.button6:hover {
    background-color: #007bff; /* Blue background on hover */
    color: #fff; /* White text on hover */
}

        .not-found {
            color: #ff0000;
        }
      
 