:host { position: relative; display: block; min-height: 100vh; background: #f4eee4; color: #2f2720; } .event-page { display: flex; align-items: flex-start; gap: 8px; background: #f4eee4; } .event-main { flex: 1; padding-right: 34px; box-sizing: border-box; } .event-panel { min-height: 650px; padding: 26px 34px 36px; background: #ffffff; border: 2px solid #d8caba; border-radius: 76px; box-sizing: border-box; } .page-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 22px; } .title-filter-area { display: grid; gap: 12px; min-width: 0; } .page-title-row h1 { margin: 0; color: #2f2720; font-size: 32px; line-height: 1.2; font-weight: 800; letter-spacing: 0.02em; } .filter-row { display: flex; align-items: flex-end; gap: 14px 18px; flex-wrap: wrap; width: 100%; } .filter-field, .search-field { display: grid; gap: 6px; } .filter-field label, .search-field label { color: #4b3c31; font-size: 14px; font-weight: 800; } .filter-field select, .search-field input { height: 38px; padding: 0 14px; border: 2px solid #d8caba; border-radius: 8px; background: #fffdf9; color: #2f2720; font-size: 15px; font-weight: 700; box-sizing: border-box; outline: none; } .filter-field select { width: 148px; cursor: pointer; } .search-field { flex: 1 1 260px; min-width: 260px; } .search-field input { width: 100%; } .filter-field select:focus, .search-field input:focus { border-color: #8a6543; box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.12); } .list-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin: 18px 0 10px; } .list-header-row h2 { margin: 0; color: #2f2720; font-size: 26px; font-weight: 800; } .list-header-row p { margin: 0; color: #7b6b5c; font-size: 14px; } .event-table-section { margin-top: 8px; } .event-table { display: grid; gap: 0; border: 2px solid #d8c2aa; border-radius: 8px; overflow: hidden; } .event-table-header, .event-table-row { display: grid; grid-template-columns: 1.25fr 0.95fr 0.68fr 0.95fr 0.82fr 1fr 96px; align-items: center; gap: 12px; } .event-table-header { min-height: 46px; padding: 0 14px; background: #efe4d6; color: #111111; font-size: 14px; font-weight: 800; box-sizing: border-box; } .event-table-row { min-height: 78px; padding: 10px 14px; border-top: 1px solid #d8c2aa; background: #fffdf9; color: #111111; font-size: 15px; box-sizing: border-box; } .event-table-row:hover { background: #fff8ee; } .person-name, .event-type { margin: 0; font-weight: 800; } .person-sub, .person-date { margin: 0; } .person-sub { margin-top: 4px; color: #111111; font-size: 13px; line-height: 1.35; } .person-date { color: #111111; font-size: 15px; } .event-type { color: #111111; } .status-select { width: 90px; height: 34px; padding: 0 10px; border: 2px solid #d8caba; border-radius: 8px; background: #ffffff; color: #111111; font-size: 14px; font-weight: 800; box-sizing: border-box; cursor: pointer; outline: none; } .status-select.sent { border-color: #8a6543; background: #f1e7d8; color: #111111; } .status-select:focus { border-color: #8a6543; box-shadow: 0 0 0 3px rgba(138, 101, 67, 0.15); } .empty-message { min-height: 58px; padding: 18px 20px; background: #fffdf9; color: #7b6b5c; font-size: 15px; font-weight: 700; box-sizing: border-box; } @media (max-width: 1100px) { .page-title-row { flex-direction: column; } .event-table { overflow-x: auto; } .event-table-header, .event-table-row { min-width: 980px; } } @media (max-width: 800px) { .event-page { flex-direction: column; } .event-main { width: 100%; padding: 16px 20px 32px; } .event-panel { padding: 24px 20px 30px; border-radius: 32px; } .page-title-row h1 { font-size: 26px; } .filter-row { align-items: flex-start; flex-direction: column; gap: 14px; } .filter-field, .filter-field select, .search-field { width: 100%; } .list-header-row { align-items: flex-start; flex-direction: column; gap: 8px; } }