@charset "UTF-8";

/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    height: 100%;
    background: linear-gradient(180deg, #0a0f1c, #000000);
    font-family: 'Share Tech Mono', monospace;
    color: #d7eaff;
    overflow: hidden;
}

/* Layout */
.screen {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-screen {
  display: flex;
  width: 100%;
  padding: 1.5rem;
  gap: 1rem;
}

.current-task-box {
    width: 50%;
    padding: 1rem;
    border-right: 1px solid rgba(120, 150, 180, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.today-schedule-box {
    width: 50%;
    padding: 1rem;
}

/* date */
.dateDetail {
    font-size: 3.5rem;
    font-weight: bold;
    color: #7fe7c5;
    text-align: center;
    margin-top: 4%;
    letter-spacing: 3px;
    text-shadow: 0 0 9px rgba(60, 200, 150, 0.4);
}

#schedule-table-container {
    height: 80%;
    margin-top: 1rem;
    overflow-y: auto;
}

/* analog clock */
.analog-time {
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-bottom: 2rem;
}

.clock-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0rem; /* 時計の位置調整 */
    margin-top: -1rem;
}

.clock-analog {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(0, 150, 255, 0.5));
}

/*current tasks*/
#current-task-display {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.08);
    text-shadow: 0 0 5px rgba(0, 150, 255, 0.3);
}


/*schedule table*/
.custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

th {
    color: #7cc9ff;
    font-size: 1.7rem;
    font-weight: 500;
}

td {
    font-size: 1.9rem;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: center;
    transition: 0.2s ease;
}

td:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* scroll bar ※not used*/
#schedule-table-container::-webkit-scrollbar {
    width: 8px;
}
#schedule-table-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
#schedule-table-container::-webkit-scrollbar-thumb {
    background: rgba(120,150,180,0.35);
    border-radius: 6px;
}

/* other */
.nowInfo{
    font-size: 60px;
}


.buff{
    font-size: 80px;
}