@font-face {
    font-family: "SF Pro Text SB";
    font-style: normal;
    font-weight: 600;
    src: url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProText-SemiBold.ttf");
  }

  @font-face {
    font-family: "SF Pro Text";
    font-style: normal;
    font-weight: 300;
    src: url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProText-Light.ttf");
  }

  @font-face {
    font-family: "SF Pro Display";
    font-style: normal;
    font-weight: 700;
    src: url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProDisplay-Bold.ttf");
  }

body {
    font-family: "SF Pro Display", BlinkMacSystemFont, sans-serif;
    background-color: black;
    color: white;
    margin: 0;
    padding: 20px;
}

.curved-input {
  width: 200px;
  padding: 10px 15px;
  border: 2px solid #007BFF; /* Border color */
  border-radius: 25px; /* Curved corners */
  font-family: "SF Pro Text", BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  outline: none; /* Remove outline on focus */
  transition: border-color 0.3s; /* Smooth transition for border color */
}

.button-primary {
    background-color: #013299;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: "SF Pro Text", BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .button-primary:hover {
    background-color: #002b87;
  }
  
  .button-secondary {
    background-color: white;
    color: #013299;
    border: 2px solid #013299;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: "SF Pro Text", BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
  }
  
  .button-secondary:hover {
    background-color: rgb(200, 200, 200);
  }
  
.container {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: rgb(32, 32, 32);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

button {
    background-color: #0071e3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
}

button:hover {
    background-color: #005bb5;
}

.table-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px; /* Curved edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    border: 2px solid #ddd; /* Border around the table */
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background: rgb(38, 38, 38);
  }
  
  th, td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #ddd;
  }
  
  th {
    background-color: #013299;
    color: white;
  }
  
  td {
    border-bottom: 1px solid #ddd;
  }
  
  tr:hover {
    background-color: rgba(0, 122, 255, 0.1);
  }