
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Sidebar and responsive layout overrides */
.sidebar-open body {
  overflow: hidden;
}

aside[ x-data ] {
  transition: transform 0.2s;
}

@media (max-width: 1023px) {
  aside[ x-data ] {
    position: fixed !important;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 50;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #fff;
    width: 80vw;
    max-width: 320px;
    transform: translateX(100%);
    display: none;
  }
  aside[ x-data ].block {
    display: block !important;
    transform: translateX(0);
  }
  .lg\\:pr-64 {
    padding-right: 0 !important;
  }
}

@media (min-width: 1024px) {
  aside[ x-data ] {
    display: block !important;
    position: static !important;
    transform: none !important;
    width: 16rem !important;
    min-width: 16rem !important;
    max-width: 16rem !important;
    height: 100vh;
  }
  .lg\\:pr-64 {
    padding-right: 16rem !important;
  }
}

 body {
      font-family: 'Tahoma', sans-serif;
      background: #f5f7f9;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      width: 400px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card h2 {
      margin-bottom: 8px;
      font-size: 20px;
      font-weight: bold;
    }

    .card p {
      color: #666;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .profile-pic {
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }

    .profile-pic img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #eee;
      object-fit: cover;
    }

    .upload-btn {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background: #009787;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      border: 2px solid #fff;
    }

    .form-group {
      text-align: right;
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 5px;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    button {
      width: 100%;
      padding: 12px;
      background: #009787;
      border: none;
      border-radius: 6px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background: #007d71;
    }
