﻿* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
    body {
    height: 100vh;
    background: #ffffff;
}

.mainnav {
    padding: 10px;
    border-radius: 10px;
    background: #f3f3f3
}

.screen {
    position: relative;
    width: 360px;
    height: 640px;
    background: #fff6eb;
    overflow: hidden;
    border-radius: 20px;
}

/* Text */
.content {
    position: relative;
    z-index: 2;
    padding: 120px 30px;
}

.welcome {
    font-size: 16px;
    color: #333;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 5px;
    color: #222;
}

/* Button */
.btn {
    margin-top: 30px;
    padding: 12px 28px;
    background: #f26722;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

/* Decorative shapes */
.shape {
    position: absolute;
    border-radius: 50%;
}

.orange {
    width: 260px;
    height: 260px;
    background: #ffa726;
    top: -130px;
    left: 40px;
}

.peach {
    width: 300px;
    height: 300px;
    background: #ffd6b0;
    top: 160px;
    left: -150px;
}

.purple {
    width: 380px;
    height: 380px;
    background: #a89bdc;
    bottom: -150px;
    right: -160px;
}


/*Calendar Controller*/
.week-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    background: #f9f9f9;
    padding: 5px 0px;
}

.day {
    flex: 0 0 auto;
    width: 40px;
    margin: 0 5px;
    text-align: center;
    padding: 20px 10px;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background 0.2s, color 0.2s;
    line-height: 12px;
}

  .day:hover {
    background: #ddd;
  }

  .today {
  /*  border: 2px solid #007BFF;*/
    font-weight: bold;
  }

  .selected {
    background: #007BFF;
    color: white;
    font-weight: bold;
  }

  .scroll-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .scroll-buttons button {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
  }

  /*FOOTER*/
.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    
}
.footer-box {
    width: 90%;
    height: 60px;
    border-radius: 50px;
    background-color: #ffffff;
    margin-top: -30px;
    padding: 3px 0px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.1);
}