
/* account.js is also using stuff from dashbard.css at the moment*/

/* API Key styling */
.api-key-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: fit-content;
}

body.dark .api-key-container {
  border: none;
}

.account-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items horizontally */
    justify-content: center; /* Centers items vertically if needed */
    gap: 20px; /* Adds space between elements */
    text-align: center; /* Ensures button text is centered */
}

.account-section {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

body.dark .api-key-container {
    background: #1e1e1e;
}

.api-key-container:hover {
    background-color: #edf2f7;
}

.api-key-masked {
    font-family: monospace;
    letter-spacing: 2px;
}

#account {
    .flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .items-center {
      display: flex;
      align-items: center;
    }
    .title {

    }
    .paid-until {
      color: #9ca3af;
    }
  }