/* General Page Styling */
body {
    background-color: #2d5a27; /* Poker table green */
    font-family: "Times New Roman", serif;
    margin: 20px;
}

/* User Story: #playing-cards flex container */
#playing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* User Story: .card styling with dimensions */
.card {
    display: flex;
    justify-content: space-between;
    width: 150px;
    height: 220px;
    background-color: #f9f9f9;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

/* Color for hearts/diamonds */
.red-card {
    color: #b30000;
}

/* User Story: Alignment for columns */
.left {
    align-self: flex-start;
    font-weight: bold;
}

.middle {
    display: flex;
    flex-direction: column;
    align-self: center;
    font-size: 2rem;
    text-align: center;
}

.right {
    align-self: flex-end;
    font-weight: bold;
    transform: rotate(180deg); /* Flips the bottom corner like a real card */
}
