/* ----------------- General body ----------------- */ body { font-family: 'Arial', sans-serif; background-color: #fff0f5; /* soft pink background */ margin: 0; padding: 0; } /* ----------------- Header ----------------- */ header { width: 100%; background: linear-gradient(90deg, #ff7eb9, #ff63a5, #ff1e56); color: white; padding: 1rem 0; text-align: center; font-size: 1.5rem; font-weight: bold; box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* stronger shadow */ } /* ----------------- Footer ----------------- */ footer { width: 100%; background: linear-gradient(90deg, #ff1e56, #ff63a5, #ff7eb9); color: white; padding: 1rem 0; text-align: center; font-size: 0.9rem; box-shadow: 0 -6px 12px rgba(0,0,0,0.2); /* stronger shadow */ position: relative; bottom: 0; } /* ----------------- Main content container ----------------- */ .main-container { max-width: 1200px; margin: 2rem auto; padding-left: 2rem; padding-right: 2rem; background-color: #ffffff; /* white background for content */ border-radius: 12px; /* rounded corners */ box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* soft shadow for card-like effect */ } /* ----------------- Navigation bar ----------------- */ .navbar { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; } .nav-link { color: white !important; font-weight: bold; font-size: 1rem; text-decoration: none; transition: 0.3s; } .nav-link:hover { text-decoration: underline; text-shadow: 0 0 8px rgba(255,255,255,0.7); /* subtle glow on hover */ } /* Page title */ .page-title { font-size: 32px; font-weight: bold; margin-bottom: 25px; background: linear-gradient(to right, #ff77b4, #ff3c8c); -webkit-background-clip: text; color: transparent; } /* Card styling */ .custom-card { border-radius: 12px; box-shadow: 0px 4px 15px rgba(255, 105, 180, 0.25); border: none; } .card-header { font-weight: 600; background: linear-gradient(to right, #ffd1e8, #ffc0df); border-radius: 12px 12px 0 0; } /* Dropdown styling */ .dropdown { box-shadow: 0px 2px 10px rgba(255, 105, 180, 0.2); } /* General text style */ .filter-label { font-weight: 600; } /* Page title */ .page-title { font-size: 32px; font-weight: bold; margin-bottom: 25px; background: linear-gradient(to right, #ff77b4, #ff3c8c); -webkit-background-clip: text; color: transparent; } /* Card styling */ .custom-card { border-radius: 12px; box-shadow: 0px 4px 15px rgba(255, 105, 180, 0.25); border: none; } .card-header { font-weight: 600; background: linear-gradient(to right, #ffd1e8, #ffc0df); border-radius: 12px 12px 0 0; } /* Dropdown styling */ .dropdown { box-shadow: 0px 2px 10px rgba(255, 105, 180, 0.2); } /* General text style */ .filter-label { font-weight: 600; }