File size: 3,797 Bytes
277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 8acc1ae 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 8acc1ae 277aec4 cd366d1 277aec4 8acc1ae 277aec4 8acc1ae 277aec4 8acc1ae 277aec4 cd366d1 8acc1ae cd366d1 8acc1ae 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 277aec4 cd366d1 989fa6f 277aec4 989fa6f 277aec4 5ab3d72 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | /* --- THEME & VARIABLES --- */
:root {
--navy-dark: #0a192f;
--navy-light: #112240;
--slate-light: #ccd6f6;
--slate-medium: #8892b0;
--cyan-accent: #64ffda;
--cyan-accent-transparent: rgba(100, 255, 218, 0.1);
--success-color: #64ffda;
--error-color: #ff8b8b;
}
/* --- GLOBAL STYLES & RESET --- */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: var(--navy-dark);
color: var(--slate-medium);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
font-size: 16px;
line-height: 1.5;
}
.content-wrapper {
width: 100%;
max-width: 700px;
}
/* --- HEADER & LOGO --- */
.page-header {
text-align: center;
margin-bottom: 50px;
}
.logo {
width: 100px;
height: 100px;
margin-bottom: 20px;
}
h1, h2, h3 {
color: var(--slate-light);
font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.75rem; margin-bottom: 25px; }
/* --- FORM CONTAINER & ELEMENTS --- */
.form-container {
background-color: var(--navy-light);
padding: 30px;
border-radius: 8px;
margin-bottom: 30px;
border: 1px solid #1a2c4e;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 8px;
font-size: 0.9rem;
font-weight: 500;
}
input, textarea {
width: 100%;
padding: 14px;
background-color: rgba(10, 25, 47, 0.7); /* Glassmorphism effect */
border: 1px solid var(--navy-dark);
border-radius: 6px;
color: var(--slate-light);
font-size: 1rem;
transition: all 0.25s ease;
}
input:focus, textarea:focus {
outline: none;
border-color: var(--cyan-accent);
box-shadow: 0 0 10px -3px var(--cyan-accent);
}
hr {
border: none;
border-top: 1px solid var(--navy-dark);
margin: 25px 0;
}
/* --- BUTTONS --- */
button {
width: 100%;
padding: 15px;
background-color: transparent;
border: 1px solid var(--cyan-accent);
border-radius: 6px;
color: var(--cyan-accent);
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.25s ease;
}
button:hover {
background-color: var(--cyan-accent-transparent);
}
.floating-action-button {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background-color: var(--cyan-accent);
border-radius: 50%;
border: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
cursor: pointer;
z-index: 999;
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.2s ease;
}
.floating-action-button svg {
fill: var(--navy-dark);
}
.floating-action-button:hover {
background-color: var(--cyan-accent);
transform: scale(1.1);
}
/* --- ADMIN PANEL --- */
.admin-panel summary {
cursor: pointer;
font-weight: 700;
font-size: 1.1rem;
color: var(--cyan-accent);
}
.details-content {
margin-top: 20px;
}
/* --- STATUS & MODAL STYLES --- */
.status {
text-align: center;
margin-top: 20px;
padding: 14px;
border-radius: 6px;
font-weight: 500;
display: none;
}
.status.success {
display: block;
background-color: var(--cyan-accent-transparent);
color: var(--success-color);
border: 1px solid var(--success-color);
}
.status.error {
display: block;
background-color: rgba(229, 62, 62, 0.1);
color: var(--error-color);
border: 1px solid var(--error-color);
}
/* All previous modal styles remain valid */
.hidden { display: none !important; }
.modal-backdrop, .modal-content, .modal-close {
/* Retain previous modal styles */
} |