.confirm-btn {
    width: 100%;
    padding: 12px;
    background: #1E90FF;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.confirm-btn:hover {
    background: #187bcd;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.view-button {
    text-decoration: none;
    color: white;
    background-color: #1e90ff;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.view-button:hover {
    background-color: #187bcd;
}

#orderBtn {
    background-color: #1E90FF;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#orderBtn:hover {
    background-color: #187bcd;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    background-color: white;
    font-weight: bold;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .download-btn.android {
    color: #3ddc84;
    border-color: #3ddc84;
  }
  
  .download-btn.ios {
    color: #333;
    border-color: #333;
  }
  
  .download-btn:hover {
    background-color: #f0f0f0;
  }
  
  .download-btn i {
    font-size: 20px;
  }