.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    height: auto;
    min-height: 100vh;
}

.inner-container{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.title{
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.title h1{
    font-size: 28px;
    font-weight: 600;
}

.title p{
    font-size: 18px;
    font-weight: 200;
    color: var(--main-white);
}

.links, .last-moves {
    background-color: var(--main-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.links h2, .last-moves h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--main-black);
    margin-bottom: 16px;
}

.links i{
    margin-right: 8px;
}

.links div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.links a{
    height: 200px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--main-color);
    background: #f8fafc;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: var(--shadow);
    font-size: 20px;
    transition: all 0.2s ease;
}

.links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.last-updates{
    margin-top: 20px;
}

.last-updates p {
    padding: 12px;
    border-radius: 8px;
    background-color: #f8fafc;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.last-updates p:hover {
    background-color: #f1f5f9;
}

.card {
    background-color: var(--main-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  /* Yeni eklenen - bildirim sayacı */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .summary-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
  }
  
  .summary-card i {
    color: var(--main-color);
  }
  
  .summary-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
  }
  
  .summary-card p {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-black);
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .view-all {
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .last-updates p {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
  }
  
  .last-updates p i {
    color: var(--main-color);
  }
  
  .time {
    color: #64748b;
    font-size: 12px;
    position: absolute;
    right: 12px;
  }
  
  .item-count {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
  }
  
  .action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
  }
  
  .action-btn {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: var(--main-black);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .action-btn:hover {
    background-color: var(--main-color);
    color: var(--main-white);
  }
  
  .user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--main-white);
  }
  
  /* Mobil uyumluluk için ek değişiklikler */
  @media (max-width: 768px) {
    .summary-cards {
      grid-template-columns: 1fr;
    }
    
    .links div {
      flex-direction: column;
    }
    
    .links a {
      height: auto;
      padding: 16px;
      flex-direction: row;
      justify-content: flex-start;
      gap: 12px;
    }
    
    .action-buttons {
      grid-template-columns: 1fr;
    }
    
    .title {
      flex-direction: column;
      gap: 12px;
      margin-top: 60px; /* Mobil menü butonu için alan */
    }
    
    .user-info {
      justify-content: flex-end;
    }
  }

@media (max-width: 768px) {
    .container{
        min-height: 120vh;
    }
    
    .title{
        margin-top: 100px;
    }

    .title h1{
        font-size: 16px;
        font-weight: 300;
    }

    .title p{
        text-align: right;
        font-size: 14px;
        font-weight: 300;
    }

    .links h2{
        font-weight: 300;
        font-size: 16px;
    }

    .links a{
        font-size: 16px !important;
    }

    .links div{
        flex-direction: column;
    }
    
    .last-moves{
        background: var(--darker-blue);
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .last-moves h2{
        color: var(--main-white);
        font-weight: 300;
        font-size: 16px;
    }
    
    .container a{
        height: 40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--main-color);
        background: var(--main-white);
        border-radius: 20px;
        text-decoration: none;
        font-size: 20px;
    }
    
    .last-updates{
        margin-top: 20px;
    }
    
    .last-updates p{
        color: var(--main-white);
        margin-bottom: 10px;
    }
    
    
}