.logo {
    margin-right: 10px;
}

        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            height: 30px;
        }

        header a {
            color: white;
            text-decoration: none;
            padding: 2px 5px;
            font-size: 0.9rem;
        }

        header a:hover {
            text-decoration: underline;
        }

        h1 {
            margin: 0;
            font-size: 1rem;
            
        }

        p {
            font-size:  0.9rem
        }

        .box{
            margin: auto; 
            width:1200px;
            padding:20px;
            background:#f6fdff;
            border:2px solid #4c011d;
        }

        .boxindex{
            height: 500px;
            min-width: 140px;
            max-width: 300px;
            padding:2px;
            background:#f6fdff;
            border:2px solid #4c011d;
            justify-content: center;
            align-items: center;
            
        }
        
        .minibox {
            margin-left: 20px;
            margin-top: 5px;
        }

        .database-box {
        width: auto;
        padding: 30px;
        border-radius: 8px;
        position: relative;

        }
        main-event {
            margin-top: 50px;
            margin-left: 0px;
            display: flex;
            gap: 10px;
            max-width: 1200px;
        }

        main {
            margin-top: 50px;
            padding: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            max-width: 1200px;
            width: 100%;
           margin-left: auto;
            margin-right: auto;
            flex-grow: 1;
            box-sizing: border-box;
        }

        .form {
            font-size: 0.9rem
        }
        .rectangle {
            width: calc(50% - 10px);
            aspect-ratio: 2.5	 / 1;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            color: white;
            font-weight: bold;
            text-align: center;
            font-size: 2.5rem;
        }

        .rectangle:hover {
            transform: scale(1.05);
        }

        #rect1 { background-color:  #fe2271; }
        #rect2 { background-color: blue; }
        #rect3 { background-color: green; }
        #rect4 { background-color: purple; }

        footer {
            background-color: #f0f0f0;
            padding: 10px;
            text-align: center;
            margin-top: auto;
        }

        footer h2 {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        footer p {
            font-size: 0.7rem;
            margin: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
       @media (max-width: 768px) {
            .rectangle {
                width: calc(100% - 20px);
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .rectangle {
                font-size: 1.5rem;
            }
        }
        
        .btn-pinn {
        background-color: #FFC0CB !important; /* Pink color */
        border-color: #FFC0CB !important;     /* Matching border color */
        color: #FFFFFF !important;            /* Optional: White text for better contrast */
    }
        /* Optional: Style for hover and focus states */
        .btn-pink:hover,
        .btn-pink:focus {
            background-color: #FFB6C1 !important; /* Slightly darker pink on hover/focus */
            border-color: #FFB6C1 !important;
        }

        .info-icon {

            font-size: 1.2rem;
            font-weight: 200;
            cursor: help;
            position: relative;
            display: inline-block;
            transition: transform 0.2s ease;
            z-index: 10;
        }

        .tooltip {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: 150%;
            left: 50%;
            transform: translateX(-50%);
            background: #2c3e50;
            color: white;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 0.9rem;
            white-space: nowrap;
            z-index: 1001;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            min-width: 200px;
            text-align: center;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: #2c3e50;
        }

        .info-icon:hover .tooltip {
            visibility: visible;
            opacity: 1;
            transform: translateX(-50%) translateY(-5px);
        }
