| |
|
|
| body { |
| font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif; |
| line-height: 1.6; |
| margin: 0; |
| background-color: var(--background-light); |
| color: var(--text-dark); |
| display: flex; |
| flex-direction: column; |
| min-height: 100vh; |
| overflow-y: auto; |
| padding: 20px; |
| box-sizing: border-box; |
| } |
|
|
| .main-wrapper { |
| max-width: 1200px; |
| width: 100%; |
| padding: 30px; |
| background-color: var(--card-bg); |
| border-radius: 12px; |
| box-shadow: 0 6px 20px var(--shadow-medium); |
| box-sizing: border-box; |
| margin: auto; |
| flex-grow: 1; |
| } |
|
|
| .main-header { |
| text-align: center; |
| margin-bottom: 40px; |
| padding-bottom: 20px; |
| border-bottom: 1px solid var(--border-color); |
| } |
|
|
| |
| body .main-wrapper h2.main-header { |
| text-align: center; |
| display: block; |
| width: 100%; |
| } |
|
|
| |
| body .main-wrapper header.main-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
|
|
| .main-header h1 { |
| color: var(--primary-dark); |
| font-size: 2.5rem; |
| margin: 0; |
| flex-grow: 1; |
| text-align: center; |
| } |
|
|
| #logout-button { |
| background-color: var(--secondary-color); |
| color: var(--text-light); |
| padding: 8px 18px; |
| border: none; |
| border-radius: 6px; |
| cursor: pointer; |
| font-size: 0.95rem; |
| transition: background-color 0.3s ease, transform 0.2s ease; |
| } |
|
|
| #logout-button:hover { |
| background-color: #5a6268; |
| transform: translateY(-2px); |
| } |
|
|
| .content-wrapper { |
| display: flex; |
| flex-direction: column; |
| gap: 20px; |
| } |
|
|
| |
| pre { |
| white-space: pre-wrap; |
| word-wrap: break-word; |
| overflow-x: auto; |
| } |
|
|
| h1, h2, h3 { |
| color: var(--primary-color); |
| margin-top: 0; |
| margin-bottom: 20px; |
| } |
|
|
| .card { |
| background-color: var(--card-bg); |
| padding: 20px; |
| margin-bottom: 25px; |
| border-radius: 12px; |
| box-shadow: 0 4px 15px var(--shadow-light); |
| border: 1px solid var(--border-color); |
| width: 100%; |
| box-sizing: border-box; |
| position: relative; |
| } |
|
|
| |
| pre { |
| white-space: pre-wrap; |
| word-wrap: break-word; |
| } |
|
|
| .form-group { |
| margin-bottom: 20px; |
| } |
|
|
| label { |
| display: block; |
| margin-bottom: 8px; |
| font-weight: 600; |
| color: var(--text-dark); |
| } |
|
|
| input[type="text"], |
| input[type="password"], |
| textarea { |
| width: 100%; |
| padding: 12px; |
| border: 1px solid var(--border-color); |
| border-radius: 8px; |
| box-sizing: border-box; |
| font-size: 1rem; |
| transition: border-color 0.3s ease, box-shadow 0.3s ease; |
| } |
|
|
| input[type="text"]:focus, |
| input[type="password"]:focus, |
| textarea:focus { |
| border-color: var(--primary-color); |
| box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); |
| outline: none; |
| } |
|
|
| textarea { |
| min-height: 120px; |
| resize: vertical; |
| } |
|
|
| button { |
| background-color: var(--primary-color); |
| color: var(--text-light); |
| padding: 12px 25px; |
| border: none; |
| border-radius: 8px; |
| cursor: pointer; |
| font-size: 1.05rem; |
| font-weight: 600; |
| transition: background-color 0.3s ease, transform 0.2s ease; |
| display: inline-block; |
| text-align: center; |
| } |
|
|
| button:hover { |
| background-color: var(--primary-dark); |
| transform: translateY(-2px); |
| } |
|
|
| .error { |
| color: var(--danger-color); |
| margin-top: 15px; |
| font-weight: 500; |
| } |
|
|