body {
            font-family: Arial, sans-serif;
            background: #32CD32;
            margin: 0;
            padding: 20px;
            text-align: center;
        }

        .container {
            max-width: 50%;
            width: 50%;
            margin: auto;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
        }

        input, textarea, button {
            width: 50%;
            padding: 12px;
            margin: 8px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
        }

        textarea {
            height: 120px;
            resize: none;
        }

        button {
            background: #007bff;
            color: white;
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            width: 50%;
            padding: 12px;
        }

        button:hover {
            background: #0056b3;
        }

        .message-container {
            max-width: 50%;
            width: 50%;
            margin: 10px auto;
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
            text-align: left;
        }

        .message {
            padding: 15px 0;
            border-bottom: 2px dashed #ddd;
        }

        .pagination {
            text-align: center;
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
        }

        .pagination button {
            background: #007bff;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            width: 48%;
        }

        .pagination button:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .enlarged-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 50%;
            height: 50%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .enlarged-image img {
            max-width: 50%;
            max-height: 50%;
            border: 5px solid white;
            border-radius: 10px;
        }