 #contents {
     max-width: 1200px !important;
     margin: 0 auto !important;
     padding: 2rem !important;
     min-height: 100vh !important;
     width: 100% !important;
 }

 .contents_inline {
     display: flex !important;
     justify-content: center !important;
 }

 .contents_m {
     width: 100% !important;
     max-width: 1100px !important;
 }

 /* Page Title */
 .contents_m>h2 {
     font-size: 2.2rem;
     color: var(--gray-dark);
     margin-bottom: 2rem;
     font-weight: 700;
     text-align: center;
     position: relative;
 }

 .contents_m>h2::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: linear-gradient(135deg, var(--main-color) 0%, var(--button-color) 100%);
     border-radius: 2px;
 }

 /* Main Container */
 .main {
     background: var(--white);
     border-radius: 16px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     margin-bottom: 2rem;
     transition: var(--transition);
 }

 .main:hover {
     box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
 }

 /* Search Table with forced overrides */
 .search_table {
     padding: 2.5rem !important;
 }

 .search_table table {
     width: 100% !important;
     border-collapse: separate !important;
     border-spacing: 0 !important;
     margin-bottom: 2rem !important;
 }

 .search_table th {
     background: linear-gradient(135deg, var(--main-color) 0%, #1a4bb8 100%) !important;
     color: var(--white) !important;
     padding: 1.5rem 2rem !important;
     text-align: left !important;
     font-weight: 600 !important;
     font-size: 1rem !important;
     border: none !important;
     vertical-align: top !important;
     white-space: nowrap !important;
     width: 140px !important;
 }

 .search_table td {
     background: var(--white) !important;
     padding: 1.5rem 2rem !important;
     border: 1px solid var(--gray-light) !important;
     border-left: none !important;
     vertical-align: top !important;
 }

 .search_table tbody tr:first-child th:first-child {
     border-radius: 16px 0 0 0;
 }

 .search_table tbody tr:first-child td:last-child {
     border-radius: 0 16px 0 0;
 }

 .search_table tbody tr:last-child th:first-child {
     border-radius: 0 0 0 16px;
 }

 .search_table tbody tr:last-child td:last-child {
     border-radius: 0 0 16px 0;
 }

 .search_table tbody tr {
     transition: var(--transition);
 }

 .search_table tbody tr:hover td {
     background: rgba(36, 95, 229, 0.02);
 }

 /* Select Styles with forced overrides */
 .search_table select {
     padding: 0.75rem 1rem !important;
     border: 2px solid var(--gray-light) !important;
     border-radius: var(--border-radius) !important;
     font-size: 0.95rem !important;
     font-family: inherit !important;
     transition: var(--transition) !important;
     background: var(--white) !important;
     cursor: pointer !important;
     min-width: 160px !important;
 }

 .search_table select:focus {
     outline: none !important;
     border-color: var(--main-color) !important;
     box-shadow: 0 0 0 3px rgba(36, 95, 229, 0.1) !important;
 }

 /* Input Fields with forced overrides */
 .search_table input[type="text"] {
     width: 100% !important;
     max-width: 250px !important;
     padding: 0.75rem 1rem !important;
     border: 2px solid var(--gray-light) !important;
     border-radius: var(--border-radius) !important;
     font-size: 0.95rem !important;
     font-family: inherit !important;
     transition: var(--transition) !important;
     background: var(--white) !important;
 }

 .search_table input[type="text"]:focus {
     outline: none !important;
     border-color: var(--main-color) !important;
     box-shadow: 0 0 0 3px rgba(36, 95, 229, 0.1) !important;
 }

 /* Checkbox Styles for label2 with forced overrides */
 .label2 {
     display: grid !important;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
     gap: 1rem !important;
     margin-top: 1rem !important;
 }

 .label2 label {
     display: flex !important;
     align-items: center !important;
     padding: 0.875rem 1.25rem !important;
     border-radius: var(--border-radius) !important;
     transition: var(--transition) !important;
     cursor: pointer !important;
     font-size: 0.95rem !important;
     background: rgba(36, 95, 229, 0.02) !important;
     border: 1px solid rgba(36, 95, 229, 0.1) !important;
 }

 .label2 label:hover {
     background: rgba(36, 95, 229, 0.05) !important;
     border-color: rgba(36, 95, 229, 0.2) !important;
     transform: translateY(-2px) !important;
     box-shadow: 0 4px 12px rgba(36, 95, 229, 0.1) !important;
 }

 .label2 input[type="checkbox"] {
     margin-right: 0.75rem !important;
     width: 18px !important;
     height: 18px !important;
     accent-color: var(--main-color) !important;
 }

 .label2 input[type="checkbox"]:checked+span {
     color: var(--main-color) !important;
     font-weight: 600 !important;
 }

 .label2 input[type="checkbox"]:checked {
     transform: scale(1.1) !important;
 }

 /* Single checkbox style with forced overrides */
 .search_table label {
     display: flex !important;
     align-items: center !important;
     padding: 0.75rem 1rem !important;
     border-radius: var(--border-radius) !important;
     transition: var(--transition) !important;
     cursor: pointer !important;
     font-size: 0.95rem !important;
     background: rgba(36, 95, 229, 0.02) !important;
     border: 1px solid rgba(36, 95, 229, 0.1) !important;
 }

 .search_table label:hover {
     background: rgba(36, 95, 229, 0.05) !important;
     border-color: rgba(36, 95, 229, 0.2) !important;
     transform: translateY(-2px) !important;
     box-shadow: 0 4px 12px rgba(36, 95, 229, 0.1) !important;
 }

 .search_table input[type="checkbox"] {
     margin-right: 0.75rem !important;
     width: 18px !important;
     height: 18px !important;
     accent-color: var(--main-color) !important;
 }

 .search_table input[type="checkbox"]:checked+span {
     color: var(--main-color) !important;
     font-weight: 600 !important;
 }

 /* Button Container with forced overrides */
 .button {
     text-align: center !important;
     padding-top: 2rem !important;
     border-top: 2px solid var(--gray-light) !important;
     margin-top: 1rem !important;
 }

 /* Search Button with forced overrides */
 .btn_search {
     background: linear-gradient(135deg, var(--button-color) 0%, #d66013 100%) !important;
     color: var(--white) !important;
     border: none !important;
     padding: 1.25rem 3rem !important;
     font-size: 1.2rem !important;
     font-weight: 700 !important;
     border-radius: 50px !important;
     cursor: pointer !important;
     transition: var(--transition) !important;
     box-shadow: 0 6px 20px rgba(234, 115, 23, 0.3) !important;
     position: relative !important;
     overflow: hidden !important;
 }

 .btn_search:hover {
     transform: translateY(-3px) !important;
     box-shadow: 0 10px 30px rgba(234, 115, 23, 0.4) !important;
     background: linear-gradient(135deg, #d66013 0%, #c55511 100%) !important;
 }

 .btn_search:active {
     transform: translateY(-1px) !important;
 }

 .btn_search::before {
     content: '' !important;
     position: absolute !important;
     top: 50% !important;
     left: 50% !important;
     width: 0 !important;
     height: 0 !important;
     background: rgba(255, 255, 255, 0.2) !important;
     border-radius: 50% !important;
     transform: translate(-50%, -50%) !important;
     transition: width 0.3s, height 0.3s !important;
 }

 .btn_search:hover::before {
     width: 400px !important;
     height: 400px !important;
 }

 /* Message Box */
 .contents_m .message {
     background: linear-gradient(135deg, rgba(36, 95, 229, 0.05) 0%, rgba(234, 115, 23, 0.05) 100%);
     border: 1px solid rgba(36, 95, 229, 0.1);
     border-radius: 16px;
     padding: 2.5rem;
     text-align: center;
     margin-top: 2rem;
     backdrop-filter: blur(10px);
 }

 .message p {
     color: var(--gray-dark);
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     font-weight: 500;
 }

 .message ul {
     list-style: none;
 }

 .message a {
     color: var(--main-color);
     text-decoration: none;
     font-weight: 600;
     transition: var(--transition);
     padding: 0.5rem 1rem;
     border-radius: var(--border-radius);
 }

 .message a:hover {
     color: var(--button-color);
     background: rgba(36, 95, 229, 0.05);
 }

 /* Responsive Design with forced overrides */
 @media (max-width: 768px) {
     #contents {
         padding: 1rem !important;
     }

     .contents_m>h2 {
         font-size: 1.8rem !important;
         margin-bottom: 1.5rem !important;
     }

     .search_table {
         padding: 1.5rem !important;
     }

     .search_table table {
         display: block !important;
         width: 100% !important;
     }

     .search_table tbody,
     .search_table tr {
         display: block !important;
         width: 100% !important;
     }

     .search_table th,
     .search_table td {
         display: block !important;
         width: 100% !important;
         border: 1px solid var(--gray-light) !important;
         box-sizing: border-box !important;
     }

     .search_table th {
         border-radius: 12px 12px 0 0 !important;
         padding: 1.25rem 1.5rem !important;
         margin-top: 2rem !important;
         white-space: normal !important;
     }

     .search_table tbody tr:first-child th {
         margin-top: 0 !important;
     }

     .search_table td {
         border-radius: 0 0 12px 12px !important;
         border-top: none !important;
         padding: 1.5rem !important;
     }

     .search_table select,
     .search_table input[type="text"] {
         width: 100% !important;
         max-width: none !important;
         margin-bottom: 1rem !important;
     }

     .label2 {
         grid-template-columns: 1fr !important;
     }

     .search_table label {
         max-width: none !important;
         width: 100% !important;
     }

     .btn_search {
         padding: 1rem 2rem !important;
         font-size: 1.1rem !important;
         width: 100% !important;
         max-width: 300px !important;
     }

     .message {
         padding: 2rem !important;
     }
 }

 @media (max-width: 480px) {
     .contents_m>h2 {
         font-size: 1.5rem;
     }

     .search_table {
         padding: 1rem;
     }

     .search_table th {
         padding: 1rem 1.25rem;
         font-size: 0.95rem;
     }

     .search_table td {
         padding: 1.25rem;
     }

     .btn_search {
         font-size: 1rem;
         padding: 0.875rem 1.5rem;
     }
 }

 /* Animation */
 .main {
     animation: fadeInUp 0.8s ease-out;
 }

 .contents_m>h2 {
     animation: fadeInDown 0.6s ease-out;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Focus improvements for accessibility */
 .search_table select:focus,
 .search_table input[type="text"]:focus,
 .btn_search:focus {
     outline: 2px solid var(--main-color);
     outline-offset: 2px;
 }

 /* Loading state for button */
 .btn_search:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
 }

 .btn_search:disabled:hover {
     transform: none;
     box-shadow: 0 6px 20px rgba(234, 115, 23, 0.3);
 }