/*
 * CodeIgniter CSS File
 *
 * @filename    	maintenance.css
 * @developers  	Ibrahim Sardar
 * @last_update 	03 Dec 2025
 * @link	    	assets/frontend/maintenance/maintenance.css
 */


        body {
            background: #ffffff;
            color: black;
            font-family: Arial, sans-serif;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 10px;
            overflow: hidden;
        }
        
        .spdc-settings-page {
            max-width: 600px;
            margin: auto;
            color: #333;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .maintenance-container {
            position: relative;
            padding: 30px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: fadeIn 2s ease-in-out;
        }
        
        h1 {
            font-size: 2em;
            margin-bottom: 10px;
        }

        p {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: red;
        }

        .timer {
            font-size: 1.5em;
            font-weight: bold;
            margin-top: 20px;
            background: #0064ff;
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 4px 6px rgba(0, 100, 255, 0.3);
        }

        .image-container {
            width: 110px;
            height: 110px;
            background: url("/assets/frontend/maintenance/access-denied.png") no-repeat center center;
            background-size: contain;
            display: inline-block;
        }

        